drop minimum name length
continuous-integration/drone/push Build is failing Details

This commit is contained in:
knoflook 2022-03-18 13:18:18 +01:00
parent c91cc6cce4
commit 43e3ac855d
1 changed files with 2 additions and 2 deletions

View File

@ -17,10 +17,10 @@
<form method="post" action="{{ url_for('form_keycloak_register') }}">
<label for="first_name">First name:</label>
<input type="text" name="first_name" value="{{ first_name }}" minlength="3" />
<input type="text" name="first_name" value="{{ first_name }}" minlength="1" />
<label for="last_name">Last name:</label>
<input type="text" name="last_name" value="{{ last_name }}" minlength="3"/>
<input type="text" name="last_name" value="{{ last_name }}" minlength="1"/>
<label for="username">Username:</label>
<input type="text" name="username" value="{{ username }}" minlength="3"/>