Blocks in view: profile/password

This commit is contained in:
xdrm-brackets 2017-11-08 13:49:28 +01:00
parent aec043a67e
commit 3d99edc000
1 changed files with 15 additions and 8 deletions

View File

@ -1,15 +1,22 @@
<form class='search'>
{% block form_tag %} <form class='search'> {% endblock %}
<input id='old_pwd' type='password' placeholder='Mot de passe actuel'><br>
<span class='error-msg old_pwd'></span><br>
{% block input %}
<input id='new_pwd' type='password' placeholder='Nouveau mot de passe'><br>
<span class='error-msg new_pwd'></span><br>
<input id='old_pwd' type='password' placeholder='Mot de passe actuel'><br>
<span class='error-msg old_pwd'></span><br>
<input id='confirm_pwd' type='password' placeholder='Confirmation'><br>
<span class='error-msg confirm_pwd'></span><br>
<input id='new_pwd' type='password' placeholder='Nouveau mot de passe'><br>
<span class='error-msg new_pwd'></span><br>
<input id='confirm_pwd' type='password' placeholder='Confirmation'><br>
<span class='error-msg confirm_pwd'></span><br>
<button id='update_pwd'>Mettre à jour</button>
{% endblock %}
{% block submit %}
<button id='update_pwd'>Mettre à jour</button>
{% endblock %}
</form>