aboutsummaryrefslogtreecommitdiff
path: root/templates/new_paste.html
blob: 658acfbb8d3e2ea6d9fdc79bb0752617500348be (plain)
1
2
3
4
5
6
7
8
9
{% extends "layout.html" %}
{% block title %}New Paste{% endblock %}
{% block body %}
  <h2>New Paste</h2>
  <form action="" method=post>
    <div class=code><textarea name=code cols=60 rows=12>{{ parent.code }}</textarea></div>
    <p><input type=submit value="New Paste">
  </form>
{% endblock %}
bgstack15