summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/booking/steps/booking_confirm.html
blob: 9c7e9510367205285dffcba45f8b421fcfa0c2b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{% extends "workflow/viewport-element.html" %}
{% load staticfiles %}

{% load bootstrap3 %}

{% block content %}

<style>
    #form_div {
        width: 100%;
        padding: 5%;
        text-align: center;
    }
</style>

<div id="form_div">
<p>confirm booking</p>
<p>{{info|default:"booking info"}}</p>
<form action="/wf/workflow/" method="post">
    {% csrf_token %}
    {{form|default:"<p> No Form Loaded</p>"}}
    <input type="submit" value="Submit" style="display: none;"/>
</form>
</div>
{% endblock content %}