Skip to content

Instantly share code, notes, and snippets.

@Kd-Here
Last active March 4, 2023 17:04
Show Gist options
  • Save Kd-Here/c163cce7acdd424bc7467de1fe29cb02 to your computer and use it in GitHub Desktop.
Save Kd-Here/c163cce7acdd424bc7467de1fe29cb02 to your computer and use it in GitHub Desktop.
{% extends "base.html" %}{% block title %}Sign Up{% endblock %}
{% block content %}
<h1>This is the sign up page</h1>
<form method="POST">
<h3 align="center" class="bg-primary text-dark">Sing UP</h3>
<div class="form-group">
<label for="email">Email Address</label>
<input type="email" class="form-control" name="email" id="email" placeholder="enter mail">
</div>
<div class="form-group">
<label for="firstname">First Name</label>
<input type="text" class="form-control" name="firstname id="firstname" placeholder="enter your name">
</div>
<div class="form-group">
<label for="password1">Password</label>
<input type="password" class="form-control" name="password1" id="password1" placeholder="enter password">
</div>
<div class="form-group">
<label for="password2">Password (Confirm)</label>
<input type="password" class="form-control" name="password2" id="password2" placeholder="confirm password">
</div>
<br>
<button class="btn btn-primary" type="submit">Submit</button>
</form>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment