Skip to content

Commit

Permalink
Update UserAuth.php
Browse files Browse the repository at this point in the history
  • Loading branch information
TomBos authored Apr 17, 2023
1 parent 9ae8415 commit bcd7431
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Pages/UserAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
<div class="contact__inputs grid">
<div class="contact__content">
<label for="" class="contact__label"> User Name </label>
<input type="text" minlength="3" required name="name" class="contact__input">
<input type="text" maxlength="10" minlength="3" required name="name" class="contact__input">
</div>


Expand All @@ -92,12 +92,12 @@

<div class="contact__content">
<label for="" class="contact__label"> Password </label>
<input type="password" minlength="4" required name="password" class="contact__input">
<input type="password" maxlength="15" minlength="4" required name="password" class="contact__input">
</div>

<div class="contact__content">
<label for="" class="contact__label"> Confirm Password </label>
<input type="password" minlength="4" required name="retyped_password" class="contact__input">
<input type="password" maxlength="15" minlength="4" required name="retyped_password" class="contact__input">
</div>
</div>

Expand Down Expand Up @@ -126,4 +126,4 @@
</script>


</html>
</html>

0 comments on commit bcd7431

Please sign in to comment.