3224d16197
Co-authored-by: Copilot <copilot@github.com>
17 lines
532 B
HTML
17 lines
532 B
HTML
{% extends "base.html" %} {% block title %}Log in — All You Can GET AI{%
|
|
endblock %} {% block content %}
|
|
<div class="card">
|
|
<h1>Log in</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 />
|
|
|
|
<button type="submit">Log in</button>
|
|
</form>
|
|
<p>No account? <a href="{{ url_for('register') }}">Register</a></p>
|
|
</div>
|
|
{% endblock %}
|