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

Commit

Permalink
fix mailto
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmagueijo committed May 29, 2020
1 parent 6b7d9c1 commit 9f45421
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,27 +41,27 @@ <h2>
Send us a message
</h2>
<hr>
<form action="mailto:[email protected]">
<form action="mailto:[email protected]" method="post" enctype="text/plain">
<div class="input-group">
<label>
Your email: *
</label>
<br>
<input type="email" name="u_email" id="u_email" placeholder="Your email" required>
<input type="email" name="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" required>
<input type="text" name="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!" required></textarea>
<textarea name="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 9f45421

Please sign in to comment.