17 lines
561 B
HTML
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 %}
|