tables look almost ok

This commit is contained in:
2025-07-11 19:13:32 +03:00
parent f8761d4453
commit d72cf0a0b3
7 changed files with 36 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
{% extends 'client-base.html' %}
{% load static %}
{% block content %}
<div class="container">
<h2>Booking</h2>
<p>Manage your booking details here.</p>
</div>
<form id="preinfoForm" method="post">
{% csrf_token %}
{{ form.as_p }}
<input type="submit" value="Submit booking">
</form>
{%endblock content %}