14 lines
295 B
Markdown
14 lines
295 B
Markdown
|
# Input Validation
|
||
|
|
||
|
**`username`**
|
||
|
Accepted formats are:
|
||
|
|
||
|
- Any character except the word `admin`
|
||
|
|
||
|
Regex used to match this: `^(?!^admin$).*$`
|
||
|
You can try live [here](https://regex101.com/r/n91qZM/1)
|
||
|
|
||
|
---
|
||
|
|
||
|
_If you find a field that you think it needs validation, please open an issue on github_
|