remove invalid regex

pull/199/head
Aevann 2023-09-17 22:50:23 +03:00
parent 08bdb9100f
commit 28a118506a
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@
</div>
<label class="mt-3" for="name">Hat Name</label>
<input autocomplete="off" type="text" id="name" class="form-control" name="name" maxlength="50" pattern='[a-zA-Z0-9\-() ,_]{1,50}' placeholder="Required" value="{{name}}" required>
<input autocomplete="off" type="text" id="name" class="form-control" name="name" maxlength="50" placeholder="Required" value="{{name}}" required>
<label class="mt-3" for="author">Author</label>
<input autocomplete="off" type="text" id="author" class="form-control" name="author" maxlength="30" pattern='[a-zA-Z0-9_\-]{1,30}' placeholder="Required" value="{{username}}" required>