1
0
Fork 0
mirror of synced 2024-09-30 01:08:13 +13:00

Password need to be at least 6 chars

This commit is contained in:
eldadfux 2019-10-23 19:08:00 +03:00
parent 471bbb528d
commit eb288c5ce2

View file

@ -36,7 +36,7 @@ $providers = $this->getParam('providers', []);
<input type="email" class="full-width" id="user-email" name="email" required autocomplete="off" /> <input type="email" class="full-width" id="user-email" name="email" required autocomplete="off" />
<label for="user-password">Password</label> <label for="user-password">Password</label>
<input type="password" class="full-width" id="user-password" name="password" required autocomplete="off" /> <input type="password" class="full-width" id="user-password" name="password" required pattern=".{6,}" title="Six or more characters" autocomplete="off" />
<hr /> <hr />