SIGNUP-FORM

PHOTO EMBED

Sun Oct 09 2022 06:30:33 GMT+0000 (Coordinated Universal Time)

Saved by @khanfareed #html

{% extends "base.html"%}{%block title %}Signup{%endblock%}
{%block content%} 
<form method="POST"> 
  
    <h3 align="center">Signup</h3>
    <div class="form-group">
  
    <label for="email">Email address</label>
    <input type="text" class="form-control" id="email"  name="email" placeholder="Enter email">

<label for="firstname">First Name</label>
    <input type="text" class="form-control" id="firstname"  name="firstname" placeholder="Enter First Name">
<label for="password1">Password</label>
    <input type="text" class="form-control" id="password1"  name="password1" placeholder="Password">

<label for="password2">Password</label>
    <input type="text" class="form-control" id="password2"  name="password2" placeholder="Password">
</form>
<br>
<button type="button" class="btn btn-primary">Submit</button>

{%endblock%}	
content_copyCOPY