aboutsummaryrefslogtreecommitdiff
path: root/templates/new_net.rs.html
diff options
context:
space:
mode:
authorCara Salter <cara@devcara.com>2022-07-20 10:31:01 -0400
committerCara Salter <cara@devcara.com>2022-07-20 10:31:01 -0400
commit4b616447715b8129ae322341959e1c2bfabbd10e (patch)
tree01c23c8a5e29d2821cdd1047d0ec27a69f8b1138 /templates/new_net.rs.html
parentb98646d8501689072f5624483d258adcbf6fc5c5 (diff)
downloadnccd-4b616447715b8129ae322341959e1c2bfabbd10e.tar.gz
nccd-4b616447715b8129ae322341959e1c2bfabbd10e.zip
emails
also subnet storage
Diffstat (limited to 'templates/new_net.rs.html')
-rw-r--r--templates/new_net.rs.html21
1 files changed, 21 insertions, 0 deletions
diff --git a/templates/new_net.rs.html b/templates/new_net.rs.html
new file mode 100644
index 0000000..4628432
--- /dev/null
+++ b/templates/new_net.rs.html
@@ -0,0 +1,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()