25 lines
1016 B
HTML
25 lines
1016 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Reset hasła - RouterOS Update{% endblock %}
|
|
{% block content %}
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-6">
|
|
<h2 class="mb-4">Zmiana hasła</h2>
|
|
<form method="POST">
|
|
<div class="mb-3">
|
|
<label for="old_password" class="form-label">Stare hasło</label>
|
|
<input type="password" class="form-control" name="old_password" id="old_password" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="new_password" class="form-label">Nowe hasło</label>
|
|
<input type="password" class="form-control" name="new_password" id="new_password" required>
|
|
</div>
|
|
<div class="mb-3">
|
|
<label for="confirm_password" class="form-label">Potwierdź nowe hasło</label>
|
|
<input type="password" class="form-control" name="confirm_password" id="confirm_password" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Zresetuj hasło</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|