42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Register
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Register</h2>
|
|
<div class="form-group">
|
|
<form action="/register" method="post">
|
|
<div>
|
|
<label for="username">Username:</label>
|
|
<input type="text" name="username" class="form-control" required>
|
|
</div>
|
|
<div>
|
|
<label for="password">Password:</label>
|
|
<input type="password" name="password" class="form-control" required>
|
|
</div>
|
|
<div>
|
|
<label for="email">Email:</label>
|
|
<input type="email" name="email" class="form-control" required>
|
|
</div>
|
|
<div>
|
|
<label for="full_name">Full Name:</label>
|
|
<input type="text" name="full_name" class="form-control" required>
|
|
</div>
|
|
<div>
|
|
<label for="phone_number">Phone Number:</label>
|
|
<input type="tel" name="phone_number" class="form-control">
|
|
</div>
|
|
<div>
|
|
<input type="submit" value="Register" class="btn btn-primary">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
<div>
|
|
Already have an account? <a href="/login">Login</a>
|
|
</div>
|
|
|
|
{% endblock %}
|