edit txt files. keyboard shortcut for share tools

This commit is contained in:
ville rantanen
2018-07-20 21:29:11 +03:00
parent b53418b53f
commit 7d123db05f
7 changed files with 158 additions and 5 deletions

View File

@@ -0,0 +1,21 @@
{% extends "layout.html" %}
{% block body %}
<div id=index_menu>
Add text file to {{ name|safe }}
<div id=editor_form>
<form action={{ url_for('paste',name=name) }} method=post enctype=multipart/form-data>
<input type=hidden name=from_gui value="true" />
<input id="paste_filename" type=text name=filename
title="File name to write"
value="{{ filename | safe }}" onclick="clear_text(this.id,'paste.txt')">
<br>
<input type=submit value=Submit>
<input type=submit value=Cancel onclick="back()">
<br>
<textarea rows="25" cols="80" name="paste" id="paste_paste" autofocus>{{ content | safe }}</textarea>
</form>
</div>
</div>
<script type="text/javascript">changeTitle("{{ name | safe }}");</script>
{% endblock %}