1
Fork 0
mirror of https://github.com/RYGhub/royalnet.git synced 2024-11-23 11:34:18 +00:00

Add more info on the editprofile page

This commit is contained in:
Steffo 2019-01-04 13:25:28 +01:00
parent 974975f4f2
commit 1972d1a657
2 changed files with 4 additions and 1 deletions

View file

@ -101,6 +101,7 @@ textarea {
border: 1px dotted @text-color;
width: 100%;
height: 300px;
display: block;
}
button, input[type="submit"], .btn {

View file

@ -9,7 +9,9 @@
Modifica profilo
</h1>
<form action="{{ url_for('page_editprofile') }}" method="POST">
<textarea name="bio" placeholder="Scrivi la tua bio qui...">{{ data.bio }}</textarea>
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>