This commit is contained in:
2026-08-30 17:52:55 +03:00
parent e66723efb9
commit 4450517226
33 changed files with 997 additions and 0 deletions
@@ -0,0 +1,13 @@
# BUG-001 — Age boundary of 18 is incorrectly rejected
- **Priority:** High
- **Severity:** Major
- **Environment:** Chrome 128, desktop
- **Steps to reproduce:**
1. Open the registration form
2. Fill in all fields with valid data
3. Enter `18` in the "Age" field
4. Click "Create account"
- **Expected result:** Registration succeeds (the hint under the field states "registration is open from 18 years old")
- **Actual result:** The form shows the error "Age must be between 18 and 99"
- **Notes:** Looks like a classic off-by-one error in the comparison condition (`<=` used instead of `<`)