hosts_app/templates/change_password.html
Mateusz Gruszczyński d1d0ccc311 refactor
2025-02-24 23:08:03 +01:00

17 lines
561 B
HTML

{% extends "base.html" %}
{% block title %}Zmiana hasła - /etc/hosts Manager{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-md-6">
<h2>Zmień hasło</h2>
<form method="post">
<div class="form-group">
<label for="password">Nowe hasło</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Wprowadź nowe hasło">
</div>
<button type="submit" class="btn btn-primary">Zmień hasło</button>
</form>
</div>
</div>
{% endblock %}