This repository has been archived on 2024-06-26. You can view files and clone it, but cannot push or open issues or pull requests.
sakura/_sakura/templates/yuuno/global/confirm.tpl
flashwave 0c77fa438e r20151022
Signed-off-by: Flashwave <me@flash.moe>
2015-10-22 16:24:18 +02:00

23 lines
919 B
Smarty

{% extends 'global/master.tpl' %}
{% 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="{{ sakura.currentPage }}" id="confirmationForm">
<input type="hidden" name="sessionid" value="{{ php.sessionid }}" />
<input type="hidden" name="timestamp" value="{{ php.time }}" />
{% 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 %}