mirror of
https://github.com/ION606/static-site-hosting.git
synced 2026-05-14 22:16:54 +00:00
18 lines
440 B
HTML
18 lines
440 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Register</h2>
|
|
<form method="POST" action="{{ url_for('register') }}">
|
|
<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 %} |