Initial commit: LinkVault – KI-gestützte Link-Sammlung
FastAPI + HTMX Web-App zum Speichern von Links mit automatischer KI-Kategorisierung, Zusammenfassung und semantischer Suche (OpenAI). Mehrbenutzer mit Login, SQLite-Persistenz, Docker/Docker-Compose-Setup. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
24
app/templates/register.html
Normal file
24
app/templates/register.html
Normal file
@@ -0,0 +1,24 @@
|
||||
{% extends "base.html" %}
|
||||
{% block title %}Registrieren · LinkVault{% endblock %}
|
||||
{% block body %}
|
||||
<div class="auth-wrap">
|
||||
<div class="panel">
|
||||
<h1>Konto erstellen</h1>
|
||||
{% if error %}<div class="error">{{ error }}</div>{% endif %}
|
||||
<form method="post" action="/register">
|
||||
<div class="field">
|
||||
<label>E-Mail</label>
|
||||
<input type="email" name="email" required autofocus>
|
||||
</div>
|
||||
<div class="field">
|
||||
<label>Passwort (min. 6 Zeichen)</label>
|
||||
<input type="password" name="password" required minlength="6">
|
||||
</div>
|
||||
<button type="submit" style="width:100%">Registrieren</button>
|
||||
</form>
|
||||
<p class="muted" style="margin-top:16px">
|
||||
Bereits ein Konto? <a href="/login">Zur Anmeldung</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user