2021-10-15 14:08:27 +00:00
|
|
|
{% extends "settings.html" %}
|
|
|
|
|
2022-01-13 23:39:39 +00:00
|
|
|
{% block pagetitle %}Custom profilecss - {{SITE_NAME}}{% endblock %}
|
2021-10-15 14:08:27 +00:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
|
|
|
|
<div class="col col-md-8">
|
|
|
|
|
|
|
|
<div class="settings">
|
|
|
|
|
|
|
|
<div id="description">
|
|
|
|
|
|
|
|
<p class="text-small text-muted">Edit your profile css.</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/profilecss" 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 profile css" rows="50" name="profilecss" form="profile-settings" maxlength="4000">{% if v.profilecss %}{{v.profilecss}}{% endif %}</textarea>
|
2021-10-15 14:08:27 +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" class="btn btn-primary ml-auto" type="submit" value="Save">
|
2021-10-15 14:08:27 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-07-21 01:12:26 +00:00
|
|
|
{% endblock %}
|