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