mirror of
https://github.com/Steffo99/estus.git
synced 2024-11-22 07:34:19 +00:00
19 lines
496 B
Django/Jinja
19 lines
496 B
Django/Jinja
<html>
|
|
<head>
|
|
<title>Aggiungi un pesce rosso</title>
|
|
<link rel="stylesheet" href="{{css}}">
|
|
</head>
|
|
<body>
|
|
<div class="pepsecret">Ciao Ciao</div>
|
|
<div class="container">
|
|
<h1>
|
|
Aggiunta nuovo ente
|
|
</h1>
|
|
<form action="/ente_add" method="post">
|
|
<input type="text" placeholder="Nome ente" name="nome">
|
|
<input type="text" placeholder="Nome breve" name="nomebreve">
|
|
<input type="submit">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|