forked from OPSnet/Gazelle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdelete.twig
28 lines (28 loc) · 1.13 KB
/
delete.twig
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
26
27
28
{{ header('Delete collage') }}
<div class="thin center">
<div class="box" style="width: 600px; margin: 0px auto;">
<div class="head colhead">
Delete collage
</div>
<div class="pad">
<form class="delete_form" name="collage" action="collages.php" method="post">
<input type="hidden" name="action" value="take_delete" />
<input type="hidden" name="auth" value="{{ auth }}" />
<input type="hidden" name="collageid" value="{{ id }}" />
{% if is_personal %}
<div class="alertbar" style="margin-bottom: 1em;">
<strong>Warning: This is a personal collage. If you delete this collage, it <em>cannot</em> be recovered!</strong>
</div>
{% endif %}
<div class="field_div">
<strong>Reason: </strong>
<input type="text" name="reason" size="40" />
</div>
<div class="submit_div">
<input value="Delete" type="submit" />
</div>
</form>
</div>
</div>
</div>
{{ footer() }}