webcrawler v0.1
This commit is contained in:
parent
e2d9a197c0
commit
008e2bc274
18 changed files with 681 additions and 0 deletions
16
app/templates/login.html
Normal file
16
app/templates/login.html
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{% extends "base.html" %}
|
||||
{% block content %}
|
||||
<div class="form-container">
|
||||
<h2>Anmelden</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">Anmelden</button>
|
||||
</form>
|
||||
<p>Noch keinen Account? <a href="{{ url_for('auth.signup') }}">Registrieren</a></p>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue