Skip to content

Commit

Permalink
Required Fields Update
Browse files Browse the repository at this point in the history
  • Loading branch information
theolaa committed Jul 30, 2021
1 parent f92429e commit f677ec1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Test.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ <h1>Sign Up</h1>
<p>Please fill in this form to create an account.</p>
<hr>
<label for="fname">First Name</label>
<input type="text" id="fname" name="firstname" class="input" placeholder="Your name..">
<input type="text" id="fname" name="firstname" class="input" placeholder="Your name.." required>

<label for="lname">Last Name</label>
<input type="text" id="lname" name="lastname" class="input" placeholder="Your last name..">
<input type="text" id="lname" name="lastname" class="input" placeholder="Your last name.." required>

<label for="email"><b>Email</b></label>
<input type="email" pattern="[a-z0-9._%+-]+@[a-z0-9.-]+\.[a-z]{2,}$" placeholder="Enter Email" id="email" name="email" required>

<label for="country">Country</label>
<select id="country" name="country">
<option value="australia">Australia</option>
<option value="canada">Canada</option>a
<option value="canada" selected>Canada</option>
<option value="usa">USA</option>
</select>

Expand Down

0 comments on commit f677ec1

Please sign in to comment.