Skip to content

Instantly share code, notes, and snippets.

@pranav1698
Last active June 22, 2019 21:34
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 pranav1698/d7d5e014ba7eae85fae31a4336b72760 to your computer and use it in GitHub Desktop.
Save pranav1698/d7d5e014ba7eae85fae31a4336b72760 to your computer and use it in GitHub Desktop.
{% extends "master.html" %}
{% block content %}
<div class="container">
<h2>Contact Form</h2>
<form method="POST" class="main-form">
<div class="form-group">
<label for="first_name">First Name *</label>
<input type="text" class="form-control" id="first_name" name="first_name" placeholder="Enter First Name" required>
</div>
<div class="form-group">
<label for="last_name">Last Name *</label>
<input type="text" class="form-control" id="last_name" name="last_name" placeholder="Enter Last Name" required>
</div>
<div class="form-group">
<label for="email">Email *</label>
<input type="email" class="form-control" id="email" name="email" placeholder="Enter email" required>
</div>
<div class="form-group">
<label for="pwd">Password:</label>
<input type="password" class="form-control" id="pwd" placeholder="Enter password" name="pwd" required>
</div>
<div class="checkbox">
<label><input type="checkbox" name="remember"> Remember me</label>
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</div>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment