23 lines
918 B
Twig
23 lines
918 B
Twig
|
{% extends 'global/master.twig' %}
|
||
|
|
||
|
{% block title %}Confirmation{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
<div class="content standalone">
|
||
|
<div>
|
||
|
<h1>{% block header %}Confirmation{% endblock %}</h1>
|
||
|
<hr class="default">
|
||
|
{{ message }}
|
||
|
<form method="post" action="{{ server['REQUEST_URI'] }}" id="confirmationForm">
|
||
|
<input type="hidden" name="sessionid" value="{{ session_id() }}">
|
||
|
<input type="hidden" name="timestamp" value="{{ date().timestamp }}">
|
||
|
{% for key,value in conditions %}
|
||
|
<input type="hidden" name="{{ key }}" value="{{ value }}">
|
||
|
{% endfor %}
|
||
|
<input type="submit" class="inputStyling" name="yes" value="Yes">
|
||
|
<input type="submit" class="inputStyling" name="no" value="No">
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|