17 lines
525 B
HTML
17 lines
525 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}Registrieren{% endblock %}
|
|
{% block content %}
|
|
<section class="card form-card">
|
|
<h1>Registrierung</h1>
|
|
<form method="post">
|
|
<label>Name</label>
|
|
<input type="text" name="name" required>
|
|
<label>E-Mail</label>
|
|
<input type="email" name="email" required>
|
|
<label>Passwort</label>
|
|
<input type="password" name="password" required>
|
|
<button class="btn" type="submit">Konto anlegen</button>
|
|
</form>
|
|
</section>
|
|
{% endblock %}
|