29 lines
987 B
HTML
29 lines
987 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/static/css/common.css" />
|
|
<link rel="stylesheet" href="/static/css/style.css" />
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a href="/">Home</a>
|
|
<a class="active" href="/prenota">Prenotati</a>
|
|
</nav>
|
|
|
|
<section id="form-section">
|
|
<form id="form" class="hide">
|
|
<label for="tuonumero">Imposta una notifica al numero</label>
|
|
<input type="number" id="tuonumero" name="tuonumero" min="1" max="5000">
|
|
<a href="#" class="btn btn-default" id="btn-prenotati" >Prenotati</a>
|
|
</form>
|
|
</section>
|
|
<section id="now-section" class="hide">
|
|
<header><h2>Serviamo il numero</h2>
|
|
<div id="now"></div>
|
|
</section>
|
|
<div id="errors"> </div>
|
|
<script src="/static/js/common.js"></script>
|
|
<script src="/static/js/prenota.js"></script>
|
|
</body>
|
|
</html>
|
|
|