16 lines
308 B
Markdown
16 lines
308 B
Markdown
---
|
|
title: 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_
|