inital commit
This commit is contained in:
21
app/templates/manage_users_add.html
Normal file
21
app/templates/manage_users_add.html
Normal file
@@ -0,0 +1,21 @@
|
||||
{% extends "base.html"%}
|
||||
{% set title = "Konsumentin hinzufügen" %}
|
||||
{% block content %}
|
||||
<h1> Konsumentin hinzufügen</h1>
|
||||
{% if error %}
|
||||
<p>Fehler: {{ error }}</p>
|
||||
{% endif %}
|
||||
{% if success %}
|
||||
<p>{{ success }}</p>
|
||||
{% endif %}
|
||||
<p> TODO: many </p>
|
||||
<form name="user" method="post" action="/manage_users/add">
|
||||
Username:<input type="text" name=username required placeholder="Username"><br>
|
||||
Passwort:<input type="password" name=password1 required placeholder="Password"><br>
|
||||
Passwort wiederholen:<input type="password" name=password2 required placeholder="Password"><br>
|
||||
Name:<input type="text" name=longname required placeholder="Vorname Nachname"><br>
|
||||
Email:<input type="email" name=email required placeholder="petra@fet.at"><br>
|
||||
Euml ID:<input type="text" name=rfid_id required placeholder="0xDEADBEEF"><br>
|
||||
<input type="submit" value="Hinzufügen">
|
||||
</form>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user