This commit is contained in:
Mateusz Gruszczyński
2025-03-18 12:53:33 +01:00
commit 2a065aba3b
19 changed files with 1617 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
{% extends "base.html" %}
{% block title %}Zmiana hasła - SSL Monitor{% endblock %}
{% block content %}
<div class="container mt-4">
<h2>Zmiana hasła</h2>
<form method="POST" action="{{ url_for('change_password') }}">
<div class="mb-3">
<label for="current_password" class="form-label">Aktualne hasło</label>
<input type="password" class="form-control" id="current_password" name="current_password" required>
</div>
<div class="mb-3">
<label for="new_password" class="form-label">Nowe hasło</label>
<input type="password" class="form-control" id="new_password" name="new_password" required>
</div>
<div class="mb-3">
<label for="confirm" class="form-label">Potwierdź nowe hasło</label>
<input type="password" class="form-control" id="confirm" name="confirm" required>
</div>
<button type="submit" class="btn btn-primary">Zmień hasło</button>
</form>
</div>
{% endblock %}