1234567891011121314151617181920212223242526 |
- <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>
|