18 lines
557 B
HTML
18 lines
557 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Register — AI Allucanget{% endblock %}
|
|
{% block content %}
|
|
<div class="card">
|
|
<h1>Create account</h1>
|
|
<form method="post">
|
|
<label for="email">Email</label>
|
|
<input id="email" name="email" type="email" required autofocus>
|
|
|
|
<label for="password">Password</label>
|
|
<input id="password" name="password" type="password" required minlength="8">
|
|
|
|
<button type="submit">Register</button>
|
|
</form>
|
|
<p>Already have an account? <a href="{{ url_for('login') }}">Log in</a></p>
|
|
</div>
|
|
{% endblock %}
|