|
|
{% extends 'base.html' %}
|
|
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
|
|
{% block content %}
|
|
|
<h1>Register</h1>
|
|
|
<form action="{{ url_for('register') }}" method="post">
|
|
|
<label for="username">Username:</label>
|
|
|
<input type="text" id="username" name="username" required>
|
|
|
<label for="email">Email:</label>
|
|
|
<input type="email" id="email" name="email" required>
|
|
|
<label for="password">Password:</label>
|
|
|
<input type="password" id="password" name="password" required>
|
|
|
<label for="confirm_password">Confirm Password:</label>
|
|
|
<input type="password" id="confirm_password" name="confirm_password" required>
|
|
|
<button type="submit">Register</button>
|
|
|
</form>
|
|
|
{% endblock %}
|