summaryrefslogtreecommitdiffstats
path: root/dashboard/src/templates/booking/steps/booking_confirm.html
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard/src/templates/booking/steps/booking_confirm.html')
-rw-r--r--dashboard/src/templates/booking/steps/booking_confirm.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/dashboard/src/templates/booking/steps/booking_confirm.html b/dashboard/src/templates/booking/steps/booking_confirm.html
new file mode 100644
index 0000000..9c7e951
--- /dev/null
+++ b/dashboard/src/templates/booking/steps/booking_confirm.html
@@ -0,0 +1,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 %} \ No newline at end of file