This repository has been archived by the owner on Oct 24, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
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
Showing
1 changed file
with
6 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 |
---|---|---|
|
@@ -68,22 +68,24 @@ <h1>Contact</h1> | |
Got something to ask? Inquire and send us a message. You can also email us at | ||
<b>[email protected]</b>. | ||
</p> | ||
<form action="https://formspree.io/[email protected]" class="contact-form" method="POST"> | ||
<form method="POST" action="https://formspree.io/[email protected]" class="contact-form"> | ||
<div class="form-group"> | ||
<label for="name">Name</label> | ||
<input type="text" class="form-control" id="name" name="name" placeholder="e.g. Juan Dela Cruz" /> | ||
<input type="text" class="form-control" id="name" name="name" placeholder="e.g. Juan Dela Cruz" required /> | ||
</div> | ||
<div class="form-group"> | ||
<label for="email">Email</label> | ||
<input type="email" class="form-control" id="email" name="_replyto" placeholder="e.g. [email protected]" /> | ||
<input type="email" class="form-control" id="email" name="_replyto" placeholder="e.g. [email protected]" | ||
required /> | ||
</div> | ||
<div class="form-group"> | ||
<label for="subject">Subject</label> | ||
<input type="text" class="form-control" id="subject" name="subject" placeholder="Enter Subject" /> | ||
</div> | ||
<div class="form-group"> | ||
<label for="message">Message</label> | ||
<textarea class="form-control" name="message" id="message" rows="1" placeholder="Enter Message"></textarea> | ||
<textarea class="form-control" name="message" id="message" rows="1" placeholder="Enter Message" | ||
required></textarea> | ||
</div> | ||
<div class="form-group"> | ||
<button type="submit" value="submit" class="btn btn-submit"> | ||
|