webcrawler v0.1

This commit is contained in:
mkrieger 2024-11-13 18:40:55 +01:00
parent e2d9a197c0
commit 008e2bc274
18 changed files with 681 additions and 0 deletions

16
app/templates/signup.html Normal file
View file

@ -0,0 +1,16 @@
{% extends "base.html" %}
{% block content %}
<div class="form-container">
<h2>Registrieren</h2>
<form method="POST">
<label for="username">Benutzername</label>
<input type="text" name="username" id="username" required>
<label for="password">Passwort</label>
<input type="password" name="password" id="password" required>
<button type="submit">Registrieren</button>
</form>
<p>Bereits registriert? <a href="{{ url_for('auth.login') }}">Login</a></p>
</div>
{% endblock %}