hosts_app/templates/edit_server.html
Mateusz Gruszczyński cffc8b3124 refactor web interface
2025-02-25 09:28:14 +01:00

68 lines
3.1 KiB
HTML

{% extends "base.html" %}
{% block title %}Edytuj server - /etc/hosts Manager{% endblock %}
{% block extra_css %}
{{ super() }}
<style>
.tooltip-inner {
max-width: 300px;
text-align: left;
}
</style>
{% endblock %}
{% block content %}
<div class="card mb-4">
<div class="card-header">
<h2>Edytuj serwer</h2>
</div>
<div class="card-body">
<form method="POST" action="{{ url_for('edit_server', id=host.id) }}">
<div class="mb-3">
<label for="hostname" class="form-label">Nazwa hosta (IP lub domena)</label>
<input type="text" name="hostname" id="hostname" class="form-control" value="{{ host.hostname }}" required>
</div>
<div class="mb-3">
<label for="username" class="form-label">Użytkownik SSH</label>
<input type="text" name="username" id="username" class="form-control" value="{{ host.username }}" required>
</div>
<div class="mb-3">
<label for="password" class="form-label">Hasło (pozostaw puste, aby nie zmieniać)</label>
<input type="password" name="password" id="password" class="form-control" placeholder="Wprowadź nowe hasło">
</div>
<div class="mb-3">
<label for="port" class="form-label">Port SSH</label>
<input type="text" name="port" id="port" class="form-control" value="{{ host.port }}">
</div>
<div class="mb-3">
<label for="host_type" class="form-label">Typ</label>
<select name="host_type" id="host_type" class="form-select" required>
<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="mb-3">
<label for="auth_method" class="form-label">Metoda uwierzytelniania</label>
<select name="auth_method" id="auth_method" class="form-select">
<option value="password" {% if host.auth_method == 'password' %}selected{% endif %}>Hasło</option>
<option value="ssh_key" {% if host.auth_method == 'ssh_key' %}selected{% endif %}>Klucz SSH</option>
</select>
</div>
<div class="mb-3">
<label for="private_key" class="form-label">Klucz prywatny (jeśli używasz klucza SSH)</label>
<textarea name="private_key" id="private_key" rows="4" class="form-control">{{ host.private_key }}</textarea>
</div>
<div class="mb-3">
<label for="key_passphrase" class="form-label">Hasło do klucza (jeśli klucz jest zaszyfrowany)</label>
<input type="password" name="key_passphrase" id="key_passphrase" class="form-control" value="{{ host.key_passphrase }}">
</div>
<button type="submit" class="btn btn-primary">Zapisz zmiany</button>
</form>
</div>
</div>
<div class="mt-3 text-center">
<a href="{{ url_for('server_list') }}" class="btn btn-secondary">Lista serwerów</a>
<a href="{{ url_for('import_servers') }}" class="btn btn-secondary">Importuj serwery z CSV</a>
<a href="{{ url_for('export_servers_to_csv') }}" class="btn btn-secondary">Eksportuj serwery do CSV</a>
</div>
{% endblock %}