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

17 lines
662 B
HTML

{% extends "base.html" %}
{% block title %}Wyczyść Hosts - /etc/hosts Manager{% endblock %}
{% block content %}
<h2>Wyczyść Hosts</h2>
<form method="post">
<div class="form-check">
<input class="form-check-input" type="checkbox" name="linux" id="linux">
<label class="form-check-label" for="linux">Wyczyść Linux hosts</label>
</div>
<div class="form-check">
<input class="form-check-input" type="checkbox" name="mikrotik" id="mikrotik">
<label class="form-check-label" for="mikrotik">Wyczyść Mikrotik hosts</label>
</div>
<button type="submit" class="btn btn-danger mt-3">Wyczyść wybrane hosty</button>
</form>
{% endblock %}