You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

28 lines
870 B

{% extends 'base.html' %}
{% block header %}
<h2>{% block title %}Hacer una nueva reserva{% endblock title %}</h2>
{% endblock header %}
{% block content %}
<form action="/reservar" method="post">
<div class="form-group">
<label for="nombre">Nombre:</label>
<input type="text" id="nombre" name="nombre" required class="form-control"><br>
</div>
<div class="form-group">
<label for="fecha">Fecha:</label>
<input type="date" id="fecha" name="fecha" required class="form-control"><br>
</div>
<div class="form-group">
<label for="hora">Hora:</label>
<input type="time" id="hora" name="hora" required class="form-control"><br>
</div>
<div class="form-group">
<button type="submit" class="submit-btn">Reservar</button>
</div>
</form>
{% endblock content %}