Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Commit

Permalink
add required
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmagueijo committed May 29, 2020
1 parent 4aa6113 commit 6b7d9c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -47,21 +47,21 @@ <h2>
Your email: *
</label>
<br>
<input type="email" name="u_email" id="u_email" placeholder="Your email">
<input type="email" name="u_email" id="u_email" placeholder="Your email" required>
</div>
<div class="input-group">
<label>
Your name: *
</label>
<br>
<input type="text" name="u_name" id="u_name" placeholder="Your name">
<input type="text" name="u_name" id="u_name" placeholder="Your name" required>
</div>
<div class="input-group">
<label>
Message:
</label>
<br>
<textarea name="u_msg" id="u_msg" placeholder="Write you message here!"></textarea>
<textarea name="u_msg" id="u_msg" placeholder="Write you message here!" required></textarea>
</div>
<div class="submit-btn-div">
<input class="submit-btn" type="submit" value="Send message">
Expand Down

0 comments on commit 6b7d9c1

Please sign in to comment.