Skip to content

Instantly share code, notes, and snippets.

@capitalJT
Last active August 29, 2015 14:03
Show Gist options
  • Save capitalJT/8fa830bbf5dcb00df026 to your computer and use it in GitHub Desktop.
Save capitalJT/8fa830bbf5dcb00df026 to your computer and use it in GitHub Desktop.
Basic form template
<form method="post" action="addemail.php">
<label for="firstname">First name:</label>
<input type="text" id="firstname" name="firstname" />
<label for="lastname">Last name:</label>
<input type="text" id="lastname" name="lastname" />
<label for="email">Email:</label>
<input type="text" id="email" name="email" />
<input type="submit" name="Submit" value="Submit" />
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment