aboutsummaryrefslogtreecommitdiff
path: root/templates/new_paste.html
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-11 19:30:19 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-11 19:30:19 -0500
commit4cd7dfecfbe0d9d5cc5db944e47da8c058e55166 (patch)
treef7145e18cf45646b750c025bcfb591612cb40aa0 /templates/new_paste.html
parentupdate style to mine (diff)
downloadstackbin-4cd7dfecfbe0d9d5cc5db944e47da8c058e55166.tar.gz
stackbin-4cd7dfecfbe0d9d5cc5db944e47da8c058e55166.tar.bz2
stackbin-4cd7dfecfbe0d9d5cc5db944e47da8c058e55166.zip
add support for title, and ensure no js
Diffstat (limited to 'templates/new_paste.html')
-rw-r--r--templates/new_paste.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/new_paste.html b/templates/new_paste.html
index 5f1760a..4d658c6 100644
--- a/templates/new_paste.html
+++ b/templates/new_paste.html
@@ -2,7 +2,7 @@
{% block title %}New Paste{% endblock %}
{% block body %}
<form action="" method=post>
- <h2>New Paste
+ <h2><div class="pastetitle"><textarea rows="1" name="pastetitle">Enter title here</textarea></div>
{%- if parent %}
- Reply to #{{ parent.id }}
{%- endif %}
bgstack15