Created
August 4, 2019 17:52
-
-
Save maxdenaro/437d01c604993c18fa0764dfe423ceb7 to your computer and use it in GitHub Desktop.
Base form HTML template
This file contains hidden or 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
<form class="form"> | |
<input type="hidden" name="project_name" value="nameOfSite"> | |
<input type="hidden" name="admin_email" value="EmailForSending"> | |
<input type="hidden" name="form_subject" value="SubjectOfMail"> | |
<div class="input-form"> | |
<input type="text" name="name" placeholder="Name"> | |
</div> | |
<div class="input-form"> | |
<input type="tel" name="phone" placeholder="Phone"> | |
</div> | |
<div class="input-form"> | |
<input type="email" name="email" placeholder="E-mail"> | |
</div> | |
<div class="button-form"> | |
<button type="submit">Send</button> | |
</div> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment