aboutsummaryrefslogtreecommitdiff
path: root/templates/new_net.rs.html
blob: 4628432bc0be5883b8172e192fa4e57c402480c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@use super::{header_html, footer_html};

@()

@:header_html()

<h1>New Subnet</h1>

<form method="POST">
    <div>
        <label for="subnet">Subnet CIDR</label>
        <input type="text" name="subnet" required>
    </div>
    <div>
        <label for="description">Description</label>
        <textarea name="description"></textarea>
    </div>
    <button type="submit" class="accent">Submit</button>
</form>

@:footer_html()