23 lines
950 B
HTML
23 lines
950 B
HTML
{% 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 %}
|