mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 12:04:20 +00:00
15 lines
359 B
HTML
15 lines
359 B
HTML
|
{% extends 'base.html' %}
|
||
|
|
||
|
{% block pagetitle %}
|
||
|
CSS
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>
|
||
|
CSS
|
||
|
</h1>
|
||
|
<form action="{{ url_for('page_setcss') }}" method="POST">
|
||
|
<textarea name="css" placeholder="Incolla il CSS per il tuo profilo qui...">{{ css }}</textarea>
|
||
|
<input type="submit" value="Invia">
|
||
|
</form>
|
||
|
{% endblock %}
|