feat: min password length

This commit is contained in:
Teajey 2024-05-23 00:20:31 +12:00
parent 4cfa05d9fd
commit 4b60cdbcc2
Signed by: Teajey
GPG Key ID: 970E790FE834A713
1 changed files with 2 additions and 2 deletions

View File

@ -15,11 +15,11 @@
</label>
<label>
Password
<input class="form-control" name="newPassword" type="password" required>
<input class="form-control" name="newPassword" type="password" required minlength="5">
</label>
<label>
Confirm password
<input class="form-control" name="confirmPassword" type="password" required>
<input class="form-control" name="confirmPassword" type="password" required minlength="5">
</label>
<input class="btn btn-primary" type="submit" value="Register">
</div>