Skip to content

Instantly share code, notes, and snippets.

@heytulsiprasad
Created March 9, 2020 18:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save heytulsiprasad/47dd32e8b14bde6cbcd7f7aff666bc2f to your computer and use it in GitHub Desktop.
Save heytulsiprasad/47dd32e8b14bde6cbcd7f7aff666bc2f to your computer and use it in GitHub Desktop.
a blank form page with html to minimize the complexity
<form action="/contact" method="post">
<label>TITLE</label>
<label>
<input type="radio" name="title" value="mr">Mr
</label>
<label>
<input type="radio" name="title" value="mrs">Mrs
</label></br>
<label>First name</label></br>
<input type="text" name="first_name"></br>
<label>Email</label></br>
<input type="email" name="email" required></br>
<label>Phone</label></br>
<input type="tel" name="phone"></br>
<label>Password</label></br>
<input type="password" name="password"></br>
<label>Country</label></br>
<select>
<option>China</option>
<option>India</option>
<option>US</option>
</select>
<label>
<input type="checkbox" value="terms">
I agree with you.
</label>
<button type="submit">Lets go</button>
<button type="reset">Not today</button>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment