16 lines
364 B
HTML
16 lines
364 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block body %}
|
|
<h1>Brass - Anmeldung</h1>
|
|
<p>Gib dein Nutzernamen und das Passwort ein:</p>
|
|
<form>
|
|
<label for="email">E-Mail:</label>
|
|
<input name="email" type="text">
|
|
|
|
<label for="password">Passwort:</label>
|
|
<input name="password" type="password">
|
|
|
|
<input type="submit" formmethod="post">
|
|
</form>
|
|
{% endblock %}
|