This repository has been archived by the owner on Oct 9, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6b7d9c1
commit 9f45421
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"> | ||
|