2022-05-04 23:09:46 +00:00
|
|
|
{% extends "settings.html" %}
|
2022-11-21 08:52:22 +00:00
|
|
|
{% block pagetitle %}Custom CSS{% endblock %}
|
2022-05-04 23:09:46 +00:00
|
|
|
{% block content %}
|
2023-10-29 12:51:00 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="settings col col-md-8">
|
|
|
|
<section>
|
|
|
|
<h5>Custom CSS</h5>
|
|
|
|
<div id="settings-custom-css" class="settings-section rounded mb-0">
|
|
|
|
<p class="text-small text-muted pt-2 pl-3">Edit your custom CSS for the site</p>
|
|
|
|
<div class="body d-lg-flex border-bottom">
|
|
|
|
<div class="w-lg-100">
|
|
|
|
<form id="profile-settings-css" action="/settings/css" method="post" data-nonce="{{g.nonce}}" data-onsubmit="sendFormXHR(this)">
|
|
|
|
<input hidden name="formkey" value="{{v|formkey}}">
|
|
|
|
<textarea autocomplete="off" class="form-control rounded" id="css-textarea" placeholder="Custom CSS" rows="3" name="css" form="profile-settings-css" maxlength="{{CSS_LENGTH_LIMIT}}">{% if v.css %}{{v.csslazy}}{% endif %}</textarea>
|
|
|
|
<small>Limit of {{CSS_LENGTH_LIMIT}} characters</small>
|
|
|
|
<div class="d-flex mt-2">
|
|
|
|
<input autocomplete="off" id="submit-btn" class="btn btn-primary ml-auto" type="submit" value="Save">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2022-11-06 06:35:49 +00:00
|
|
|
</div>
|
2022-05-04 23:09:46 +00:00
|
|
|
</div>
|
2023-10-29 12:51:00 +00:00
|
|
|
</section>
|
|
|
|
<section>
|
|
|
|
<h5>Profile CSS</h5>
|
|
|
|
<div id="settings-profile-css" class="settings-section rounded mb-0">
|
|
|
|
<p class="text-small text-muted pt-2 pl-3">Edit your profile CSS</p>
|
|
|
|
<div class="body d-lg-flex border-bottom">
|
|
|
|
<div class="w-lg-100">
|
|
|
|
<form id="profile-settings-profilecss" action="/settings/profilecss" method="post" data-nonce="{{g.nonce}}" data-onsubmit="sendFormXHR(this)">
|
|
|
|
<input hidden name="formkey" value="{{v|formkey}}">
|
|
|
|
<textarea autocomplete="off" class="form-control rounded" id="profilecss-textarea" placeholder="Custom profile CSS" rows="3" name="profilecss" form="profile-settings-profilecss" maxlength="{{CSS_LENGTH_LIMIT}}">{% if profilecss %}{{profilecss}}{% endif %}</textarea>
|
|
|
|
<small>Limit of {{CSS_LENGTH_LIMIT}} characters</small>
|
|
|
|
<div class="d-flex mt-2">
|
|
|
|
<input autocomplete="off" class="btn btn-primary ml-auto" type="submit" value="Save">
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
2022-11-06 06:35:49 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-10-29 12:51:00 +00:00
|
|
|
</section>
|
|
|
|
</div>
|
2022-05-04 23:09:46 +00:00
|
|
|
</div>
|
2022-11-06 06:35:49 +00:00
|
|
|
{% endblock %}
|