23 lines
694 B
HTML
23 lines
694 B
HTML
{% extends "authBase.html" %}
|
|
|
|
{% block title %}Create account{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Register</h2>
|
|
<form action="">
|
|
<p>First Name</p>
|
|
<input type="text" placeholder="Enter First Name">
|
|
<p>Last Name</p>
|
|
<input type="text" placeholder="Enter Last Name">
|
|
<p>Email</p>
|
|
<input type="email" placeholder="Enter Email">
|
|
<p>Password</p>
|
|
<input type="password" placeholder="Enter Password">
|
|
<p>Repeat password</p>
|
|
<input type="password" placeholder="Enter Password">
|
|
<input type="submit" value="Crete account">
|
|
<p><input type="checkbox">Remember Me</p>
|
|
</form>
|
|
{% endblock %}
|
|
|