1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-22 15:44:19 +00:00
estus/templates/net/show.htm

15 lines
905 B
HTML

{% extends "base.htm" %}
{% block title %}Aggiungi rete • estus{% endblock %}
{% block content %}
<h1>
Aggiungi nuova rete
</h1>
<form class="form-inline" action="/net_show/{{ net.nid }}" method="post">
<input class="form-control" type="text" placeholder="Nome rete" name="nome" value="{{ net.nome }}">
<input class="form-control" type="text" placeholder="Network IP" name="network_ip" value="{{ net.network_ip }}">
<input class="form-control" type="text" placeholder="Subnet mask" name="subnet" value="{{ net.subnet }}">
<input class="form-control" type="text" placeholder="DNS primario" name="primary_dns" value="{{ net.primary_dns }}">
<input class="form-control" type="text" placeholder="DNS secondario" name="secondary_dns" value="{{ net.secondary_dns }}">
<input class="btn btn-primary" type="submit">
</form>
{% endblock %}