2020-11-29 02:05:19 +01:00
{% extends 'up_squelette.html' %}
{% block main %}
<!-- <div class="page - header">
< h1 > Profil< / h1 >
< / div > -->
< div class = "row" >
2022-09-16 03:56:11 +02:00
< h3 > Bienvenue < / h3 >
< p > Si vous êtes sur cette page, c'est que vous diposez d'un compte sur ce serveur.
2022-09-16 04:00:16 +02:00
Du coup, vous avez une adresse e-mail et une adresse XMPP que vous pouvez utiliser
2022-09-16 03:56:11 +02:00
avec un client mail et avec un client XMPP (Bien évidemment)
< / p >
2020-11-29 02:05:19 +01:00
2022-09-16 03:56:11 +02:00
< p > Voici un exemple de < a href = "https://www.thunderbird.net/fr/" > client mail < / a >
et < a href = "https://gajim.org/" > client XMPP < / a > pour un ordinateur < / p >
2022-09-16 03:18:58 +02:00
2024-03-11 05:34:09 +01:00
< p > un exemple de < a href = "https://k9mail.app/" > client mail < / a > et < a href = "https://play.google.com/store/apps/details?id=org.snikket.android&hl=ln&gl=US" > client XMPP< / a >
2022-09-16 03:56:11 +02:00
pour un téléphone sous Android < / p >
2022-09-16 03:18:58 +02:00
2024-03-11 05:34:09 +01:00
< p > et un un exemple de< a href = "https://support.apple.com/fr-fr/mail" > client mail< / a > et < a href = "https://itunes.apple.com/us/app/tigase-messenger/id1153516838" > client XMPP < / a > sous iOS pour un iphone ou un Ipad < / p >
2022-09-16 03:18:58 +02:00
2022-09-16 03:56:11 +02:00
< p > Ton profil sert aux autres membres à te reconnaitre si tu met un post-it sur le < a href = "/post-it/" > tableau des post-its < / a > aucun champs n'est obligatoire,
tu mets simplement les informations dont tu as envie < / p >
< br / >
< br / >
2022-09-16 03:18:58 +02:00
2022-09-16 03:56:11 +02:00
< div class = "col-sm-3" > < / div >
< div class = "col-sm-6" >
2022-09-16 03:18:58 +02:00
2020-11-29 02:05:19 +01:00
< div class = "panel panel-primary" >
< div class = "panel-heading" >
2022-08-06 18:22:24 +02:00
< h3 class = "panel-title" > Mon profil< / h3 >
2020-11-29 02:05:19 +01:00
< / div >
< div class = "panel-body" >
< form method = "POST" action = "" enctype = "multipart/form-data" >
2022-07-10 15:09:03 +02:00
< div id = "fic" >
< label > Photo de profil < / label >
< input type = "file" name = "fic" id = "fic" / > < br >
2022-08-07 08:32:21 +02:00
< img id = "fic" src = "/profil/{{ username }}/{{ profil['avatar'] }}" class = "img-rounded" alt = "" / >
2022-07-10 15:09:03 +02:00
< / div >
< br >
< label > Nom < / label >
2022-08-06 18:22:24 +02:00
< input type = "text" name = "nom" id = "nom" value = "{% if profil['nom'] != None %}{{ profil['nom'] }}{%endif%}" class = "form-control" > < br / >
2022-07-10 15:09:03 +02:00
< label > Prenom < / label >
2022-08-06 18:22:24 +02:00
< input type = "text" name = "prenom" id = "prenom" value = "{% if profil['nom'] != None %}{{ profil['prenom'] }}{%endif%}" class = "form-control" > < br / >
2022-07-10 15:09:03 +02:00
< label > Age < / label >
2022-08-06 18:22:24 +02:00
< input type = "text" name = "age" value = "{% if profil['age'] != None %}{{ profil['age'] }}{%endif%}" class = "form-control" > < br / >
2022-07-10 15:09:03 +02:00
< label > Mail de secours < / label >
2022-08-06 18:22:24 +02:00
< input type = "text" name = "mail_rescue" id = "mail_rescue" value = "{% if profil['nom'] != None %}{{ profil['mail_rescue'] }}{%endif%}" class = "form-control" > < br / >
2020-11-29 02:05:19 +01:00
< button id = "tada" class = "btn btn-default btn-primary" type = "submit" > Envoyer< / button >
< / form >
{# on affiche les messages d'erreur puis les messages de succes #}
{% for categorie in ['error', 'succes'] %}
{% with msgs = get_flashed_messages(category_filter=[categorie]) %}
{% if msgs %}
< div class = "flashed {{ categorie }}" >
{% for m in msgs %}
< p > {{ m|safe }}< / p >
{% endfor %}
< / div >
{% endif %}
{% endwith %}
{% endfor %}
< / div >
< / div >
< / div >
< / div >
{% endblock %}