SOITA/templates/changePassword.html
Hubert Jankowski 999ae564b8 fixes
2022-01-31 21:00:29 +01:00

23 lines
1.0 KiB
HTML

{% extends "base.html" %}
{% block title %}Zmień hasło{% endblock %}
{% block content %}
<div class="accountInfoContainer ">
<form method="post">
<input type="password" id="oldPassword" name="oldPassword" class="form-control" placeholder="Stare hasło" required><br><br>
<input type="password" id="newPassword" name="newPassword" class="form-control" placeholder="Nowe hasło" required><br><br>
<input type="password" id="repeatPassword" name="repeatPassword" class="form-control" placeholder="Powtórz hasło" required><br><br>
<input type="submit" value="Zmień hasło"><br><br>
{% if messages %}
{% for message in messages %}
<div class="alert {% if message.tags %} alert-{{ message.tags }}{% endif %}">{{ message|safe }}</div>
{% endfor %}
{% endif %}
</form>
<div class="linkDefault">
<a href="{% url 'account' %}">Wróć</a>
</div>
</div>
{% endblock %}