1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 19:44:20 +00:00
royalnet/templates/profileedit.html
2019-01-17 13:06:57 +01:00

19 lines
No EOL
859 B
HTML

{% extends 'base.html' %}
{% block pagetitle %}
Modifica profilo
{% endblock %}
{% block body %}
<h1>
Modifica profilo
</h1>
<form action="{{ url_for('page_editprofile') }}" method="POST">
<input type="email" name="email" placeholder="La tua e-mail (Gravatar)" value="{{ royal.email }}"><br>
Puoi usare il <a href="{{ url_for('page_wiki', key='Meta') }}">Markdown</a> nella tua bio.
<textarea name="bio" placeholder="Scrivi la tua bio qui... (Markdown supportato)">{{ data.bio }}</textarea>
Se vuoi, puoi personalizzare il tuo profilo con un tuo <a href="https://www.w3schools.com/css/css_howto.asp">foglio di stile!</a>
<textarea name="css" placeholder="Incolla il CSS per il tuo profilo qui...">{{ data.css }}</textarea>
<input type="submit" value="Salva">
</form>
{% endblock %}