This repository has been archived on 2023-10-10. You can view files and clone it, but cannot push or open issues or pull requests.
paste/paste/templates/home.html.j2

12 lines
478 B
Plaintext
Raw Normal View History

2023-09-25 15:30:27 +02:00
<form id="paste-content" method="POST" accept-charset="UTF-8" action="{{ url_for('home.create') }}">
2023-09-26 11:32:42 +02:00
<textarea name="content" form="paste-content">Enter text here...</textarea>
<label for="time">Time in second</label>
<input id="time" name="time">
<input type="submit">
2023-09-25 16:12:36 +02:00
</form>
{% with messages = get_flashed_messages() %}
{% if messages %}
2023-09-26 11:32:42 +02:00
<p>Paste available at : <a href="{{ messages[0] }}">{{ messages[0] }}</a></p>
2023-09-25 16:12:36 +02:00
{% endif %}
{% endwith %}