aboutsummaryrefslogtreecommitdiff
path: root/templates/delete_paste.html
blob: e258dae883499cc2dd66ed74513c0f9bf9c45f47 (plain)
1
2
3
4
5
6
7
8
9
10
11
{% extends "layout.html" %}
{% block title %}Delete Paste #{{ paste.id }}{% endblock %}
{% block body %}
  <h2>Delete Paste #{{ paste.id }}</h2>
  <form action="" method=post>
    <p>Are you sure you want to delete the paste?  You cannot undo this.
    <p>
      <input type=submit name=yes value=Yes>
      <input type=submit name=no value=No>
  </form>
{% endblock %}
bgstack15