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
2017-09-11 12:47:52 +02:00

12 lines
No EOL
465 B
HTML

{% extends "base.htm" %}
{% block title %}Aggiunta Ente{% endblock %}
{% block content %}
<h1>
Aggiunta 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 %}