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,12 @@
# BUG-007 — Upper age boundary is not validated
- **Priority:** Medium
- **Severity:** Major
- **Environment:** Chrome 128, desktop
- **Steps to reproduce:**
1. Fill in all form fields with valid data
2. Enter `200` in the "Age" field
3. Click "Create account"
- **Expected result:** Error "Age must be between 18 and 99"
- **Actual result:** The form accepts the value `200`; registration succeeds
- **Notes:** The code only checks the lower bound (`age <= 18`); the upper bound (99) is never checked