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

Commit

Permalink
Fix Format
Browse files Browse the repository at this point in the history
  • Loading branch information
jorenrui committed Aug 6, 2019
1 parent c1bc9c7 commit 763b577
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand Down

0 comments on commit 763b577

Please sign in to comment.