aboutsummaryrefslogtreecommitdiff
path: root/templates/new_paste.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/new_paste.html')
-rw-r--r--templates/new_paste.html7
1 files changed, 5 insertions, 2 deletions
diff --git a/templates/new_paste.html b/templates/new_paste.html
index 977ef22..b5a78aa 100644
--- a/templates/new_paste.html
+++ b/templates/new_paste.html
@@ -2,11 +2,14 @@
{% block title %}New Paste{% endblock %}
{% block body %}
<form action="" method=post>
- <h2><div class="pastetitle"><textarea rows="1" name="pastetitle">Enter title here</textarea></div>
+ <h2><div class="pastetitle"><textarea rows="1" name="pastetitle" placeholder="Untitled paste"></textarea></div>
{%- if parent %}
- Reply to {{ parent.title }}
{%- endif %}
- <span class="chk-private"><input name="is_private" type="checkbox"/>Private</span>
+ <span class="chk-private"><input name="is_private" id="is_private" type="checkbox"/><label for="is_private">Private</label></span>
+ {% if exp_opts %}<span class="drop-expiration"><label for="exp">Expires:</label><select name="exp" id="exp">
+ {% for o in exp_opts %}<option value="{{ o }}">{{ o }}</option>{% endfor %}
+ </select></span>{% endif %}
</h2>
<div class=code><textarea name=code cols=60 rows=12>{{ parent.code }}</textarea></div>
<p><input type=submit value="New Paste">
bgstack15