add frontend application structure with authentication, generation features, and integration tests

This commit is contained in:
2026-04-27 18:29:07 +02:00
parent 5e24215ffe
commit ee45dd9526
9 changed files with 610 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}Log in — AI Allucanget{% 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 %}