You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
375 B
HTML
17 lines
375 B
HTML
{% extends 'client-base.html' %}
|
|
{% load static %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h2>Booking</h2>
|
|
<p>Manage your container booking details here.</p>
|
|
</div>
|
|
<form id="preinfoForm" method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<input type="submit" value="Submit booking">
|
|
</form>
|
|
{%endblock content %}
|
|
|
|
|