mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Add more info on the editprofile page
This commit is contained in:
parent
974975f4f2
commit
1972d1a657
2 changed files with 4 additions and 1 deletions
|
@ -101,6 +101,7 @@ textarea {
|
||||||
border: 1px dotted @text-color;
|
border: 1px dotted @text-color;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
button, input[type="submit"], .btn {
|
button, input[type="submit"], .btn {
|
||||||
|
|
|
@ -9,7 +9,9 @@
|
||||||
Modifica profilo
|
Modifica profilo
|
||||||
</h1>
|
</h1>
|
||||||
<form action="{{ url_for('page_editprofile') }}" method="POST">
|
<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>
|
<textarea name="css" placeholder="Incolla il CSS per il tuo profilo qui...">{{ data.css }}</textarea>
|
||||||
<input type="submit" value="Salva">
|
<input type="submit" value="Salva">
|
||||||
</form>
|
</form>
|
||||||
|
|
Loading…
Reference in a new issue