13 lines
443 B
HTML
13 lines
443 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Import Hosts - /etc/hosts Manager{% endblock %}
|
|
{% block content %}
|
|
<h2>Import Hosts</h2>
|
|
<form method="post" enctype="multipart/form-data">
|
|
<div class="form-group">
|
|
<label for="file">Wybierz plik CSV</label>
|
|
<input type="file" class="form-control-file" id="file" name="file" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-primary">Importuj Hosts</button>
|
|
</form>
|
|
{% endblock %}
|