16 lines
500 B
HTML
16 lines
500 B
HTML
{% extends "base.html"%}
|
|
{% set title = "Produkt hinzufügen" %}
|
|
{% block content %}
|
|
<h1> Produkt 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">
|
|
Produktname:<input type="text" name=username required placeholder="Username"><br>
|
|
Preis:<input type="password" name=password1 required placeholder="Password"><br>
|
|
</form>
|
|
{% endblock %} |