This commit is contained in:
Mateusz Gruszczyński
2025-02-24 23:08:03 +01:00
parent 1efc3341b4
commit d1d0ccc311
38 changed files with 2251 additions and 1428 deletions

View File

@ -0,0 +1,12 @@
{% extends "base.html" %}
{% block title %}Edytuj lokalny Hosts - /etc/hosts Manager{% endblock %}
{% block content %}
<h2>Edytuj lokalny Hosts</h2>
<form method="post">
<div class="mb-3">
<label for="hosts_content" class="form-label">Treść hosts</label>
<textarea class="form-control" id="hosts_content" name="hosts_content" rows="15" required>{{ content }}</textarea>
</div>
<button type="submit" class="btn btn-primary">Zapisz zmiany</button>
</form>
{% endblock %}