Files
static-site-hosting/app/templates/register.html
T

18 lines
445 B
HTML
Raw Normal View History

2025-02-14 22:37:52 -05:00
{% extends "base.html" %}
{% block title %}Register{% endblock %}
{% block content %}
<h2>Register</h2>
2025-02-18 01:27:40 +00:00
<form method="POST" action="{{ url_for('main.register') }}">
2025-02-14 22:37:52 -05:00
<div class="form-group">
<label>Email:</label>
<input type="email" name="email" required>
</div>
<div class="form-group">
<label>Password:</label>
<input type="password" name="password" required>
</div>
<button type="submit">Register</button>
</form>
{% endblock %}