bastebin/templates/index.html

36 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block title %}{{ cfg.site.name }}{% endblock %}
{% block main_class %}full-page{% endblock %}
{% block nav_actions %}
<input type="text" id="title" placeholder="Title (optional)" class="nav-input" maxlength="100" autocomplete="off">
<select id="language" class="nav-select"></select>
<select id="expires_in" class="nav-select">
<option value="never">Never</option>
<option value="1hour">1 Hour</option>
<option value="1day">1 Day</option>
<option value="1week">1 Week</option>
<option value="1month">1 Month</option>
</select>
<button id="submitBtn" class="nav-btn nav-btn-save">Save</button>
{% if cfg.theme.allow_user_toggle %}
<button id="themeToggle" class="theme-toggle">🌙</button>
{% endif %}
{% endblock %}
{% block content %}
<textarea
id="content"
class="full-editor"
placeholder="Paste your code or text here…"
spellcheck="false"
autocomplete="off"
autocorrect="off"
autocapitalize="off"></textarea>
{% endblock %}
{% block scripts %}
<script src="{{ url_for('static', filename='js/paste_create.js') }}" nonce="{{ csp_nonce }}"></script>
{% endblock %}