diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-07 17:43:05 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2024-01-07 17:43:05 +0100 |
commit | b40299538a73d25d096d8f58f1468cd7f647a3f9 (patch) | |
tree | c7635cc964ad790a6f520862e948c16a2b2021a4 /templates/send.html | |
parent | c2742cde3d034b2af9bbcee90765338ee094e6cc (diff) | |
download | cats-radio-node-b40299538a73d25d096d8f58f1468cd7f647a3f9.tar.gz cats-radio-node-b40299538a73d25d096d8f58f1468cd7f647a3f9.tar.bz2 cats-radio-node-b40299538a73d25d096d8f58f1468cd7f647a3f9.zip |
Add first iteration of send page, and fake-radio
Diffstat (limited to 'templates/send.html')
-rw-r--r-- | templates/send.html | 12 |
1 files changed, 11 insertions, 1 deletions
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: #} |