aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/head.html2
-rw-r--r--templates/send.html12
2 files changed, 12 insertions, 2 deletions
diff --git a/templates/head.html b/templates/head.html
index 67eb7bd..10d2b13 100644
--- a/templates/head.html
+++ b/templates/head.html
@@ -6,7 +6,7 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/static/style.css" type="text/css">
<link rel="stylesheet" href="/static/font-awesome/css/font-awesome.min.css">
- <!-- <script src="/static/index.js" defer></script> -->
+ <script src="/static/main.js" defer></script>
</head>
<body>
<div class="flex">
diff --git a/templates/send.html b/templates/send.html
index b47f6b0..e287b18 100644
--- a/templates/send.html
+++ b/templates/send.html
@@ -1,6 +1,16 @@
{% include "head.html" %}
<div class="">
- Send!
+ <h1>Send a frame</h1>
+
+ <div>
+ <h2>Comment Whisker</h2>
+ <div>
+ <input type="checkbox" id="with_comment" value="Include Comment" checked>
+ <input class="textinput" type="text" id="whisker_comment" placeholder="Type comment here">
+ </div>
+
+ <button class="btn" type="button" onclick="btn_send_packet()">Send</button>
+ </div>
</div>
{% include "foot.html" %}
{# vi:set et sw=2 ts=2: #}