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

25 lines
900 B
Text
Raw Normal View History

<html>
<head>
<title>Aggiunta servizio - Inventario</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="{{css}}">
</head>
<body>
2017-02-01 12:08:56 +00:00
{% include 'nav.html.j2' %}
<div class="container">
<h1>
Aggiunta nuovo servizio
</h1>
<form class="form-inline" action="/serv_add" method="post">
<select class="form-control" name="eid">
{% for ente in enti %}
<option value="{{ente.eid}}">{{ente.nomeente}}</option>
{% endfor %}
</select>
<input class="form-control" type="text" placeholder="Nome ente" name="nomeservizio">
<input class="form-control" type="submit">
</form>
</div>
</body>
</html>