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

47 lines
2.1 KiB
HTML

{% extends "base.html" %}
{% block title %}Edytuj host - /etc/hosts Manager{% endblock %}
{% block content %}
<h2>Edytuj host</h2>
<form method="post">
<div class="form-group">
<label for="hostname">Hostname</label>
<input type="text" class="form-control" id="hostname" name="hostname" value="{{ host.hostname }}" required>
</div>
<div class="form-group">
<label for="username">Username</label>
<input type="text" class="form-control" id="username" name="username" value="{{ host.username }}" required>
</div>
<div class="form-group">
<label for="password">Hasło (pozostaw puste, aby nie zmieniać)</label>
<input type="password" class="form-control" id="password" name="password" placeholder="Wprowadź nowe hasło">
</div>
<div class="form-group">
<label for="port">Port</label>
<input type="number" class="form-control" id="port" name="port" value="{{ host.port }}">
</div>
<div class="form-group">
<label for="host_type">Typ hosta</label>
<select class="form-control" id="host_type" name="host_type">
<option value="linux" {% if host.type == 'linux' %}selected{% endif %}>Linux</option>
<option value="mikrotik" {% if host.type == 'mikrotik' %}selected{% endif %}>Mikrotik</option>
</select>
</div>
<div class="form-group">
<label for="auth_method">Metoda autoryzacji</label>
<select class="form-control" id="auth_method" name="auth_method">
<option value="password" {% if host.auth_method == 'password' %}selected{% endif %}>Password</option>
<option value="ssh_key" {% if host.auth_method == 'ssh_key' %}selected{% endif %}>SSH Key</option>
</select>
</div>
<div class="form-group">
<label for="private_key">Klucz prywatny (opcjonalnie)</label>
<textarea class="form-control" id="private_key" name="private_key" rows="3">{{ host.private_key }}</textarea>
</div>
<div class="form-group">
<label for="key_passphrase">Passphrase (opcjonalnie)</label>
<input type="text" class="form-control" id="key_passphrase" name="key_passphrase" value="{{ host.key_passphrase }}">
</div>
<button type="submit" class="btn btn-primary">Zapisz zmiany</button>
</form>
{% endblock %}