rDrama/files/templates/settings_css.html

41 lines
1.1 KiB
HTML
Raw Normal View History

2021-10-15 14:08:27 +00:00
{% extends "settings.html" %}
{% block pagetitle %}Custom CSS - {{'SITE_NAME' | app_config}}{% endblock %}
{% block content %}
2021-12-14 22:48:37 +00:00
<div class="row">
<div class="col col-md-8">
<div class="settings">
<div id="description">
<p class="text-small text-muted">Edit your custom CSS for the site.</p>
<div class="settings-section rounded mb-0">
<div class="body d-lg-flex border-bottom">
<div class="w-lg-100">
<form id="profile-settings" action="/settings/css" method="post">
2021-12-28 12:41:26 +00:00
<input autocomplete="off" type="hidden" name="formkey" value="{{v.formkey}}">
<textarea autocomplete="off" class="form-control rounded" id="bio-text" aria-label="With textarea" placeholder="Custom CSS" rows="50" name="css" form="profile-settings" maxlength="4000">{% if v.css %}{{v.csslazy}}{% endif %}</textarea>
2021-12-14 22:48:37 +00:00
<small>Limit of 4000 characters</small>
<div class="d-flex mt-2">
2021-12-28 12:41:26 +00:00
<input autocomplete="off" id="submit-btn" class="btn btn-primary ml-auto" type="submit" value="Save">
2021-12-14 22:48:37 +00:00
</div>
</form>
2021-12-06 19:18:44 +00:00
</div>
2021-12-14 22:48:37 +00:00
</div>
2021-12-06 19:18:44 +00:00
</div>
2021-10-15 14:08:27 +00:00
</div>
</div>
2021-12-14 22:48:37 +00:00
</div>
</div>
2021-12-06 19:13:53 +00:00
2021-12-06 19:14:17 +00:00
{% endblock %}