1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 15:44:19 +00:00
estus/templates/ente/add.htm

12 lines
No EOL
475 B
HTML

{% extends "base.htm" %}
{% block title %}Aggiungi ente • estus{% endblock %}
{% block content %}
<h1>
Aggiungi nuovo ente
</h1>
<form class="form-inline" action="/ente_add" method="post">
<input class="form-control" type="text" placeholder="Nome ente" name="nomeente">
<input class="form-control" type="text" placeholder="Nome breve" name="nomebreveente">
<input class="btn btn-primary" type="submit">
</form>
{% endblock %}