Last active
June 22, 2019 21:34
-
-
Save pranav1698/d7d5e014ba7eae85fae31a4336b72760 to your computer and use it in GitHub Desktop.
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
{% 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