14 lines
641 B
HTML
14 lines
641 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h2>Dodaj nowy router</h2>
|
|
<form method="POST">
|
|
<label>Nazwa: <input type="text" name="name" required></label><br>
|
|
<label>Adres IP/Host: <input type="text" name="host" required></label><br>
|
|
<label>Port SSH: <input type="number" name="port" value="22"></label><br>
|
|
<label>Użytkownik SSH: <input type="text" name="ssh_user" value="admin"></label><br>
|
|
<label>Klucz prywatny (string/ścieżka): <textarea name="ssh_key"></textarea></label><br>
|
|
<label>Hasło SSH: <input type="password" name="ssh_password"></label><br><br>
|
|
<button type="submit">Zapisz</button>
|
|
</form>
|
|
{% endblock %}
|