aboutsummaryrefslogtreecommitdiffstats
path: root/templates/send.html
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2024-01-24 17:29:33 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2024-01-24 17:29:33 +0100
commit67441f813917d0a9c6624ec04ddc08d89ec2b3bc (patch)
tree8071903dc1c6982daa2fd84e2cc867e276c1160e /templates/send.html
parent82f6ce1b1f003903c0e8ffceafe17682ecd7fb88 (diff)
downloadcats-radio-node-67441f813917d0a9c6624ec04ddc08d89ec2b3bc.tar.gz
cats-radio-node-67441f813917d0a9c6624ec04ddc08d89ec2b3bc.tar.bz2
cats-radio-node-67441f813917d0a9c6624ec04ddc08d89ec2b3bc.zip
Work on chat page
Diffstat (limited to 'templates/send.html')
-rw-r--r--templates/send.html14
1 files changed, 8 insertions, 6 deletions
diff --git a/templates/send.html b/templates/send.html
index b3bccab..f90d447 100644
--- a/templates/send.html
+++ b/templates/send.html
@@ -1,9 +1,11 @@
{% include "head.html" %}
<div class="content">
<h1>Send a frame</h1>
- <p>One main feature of CATS is that packets are constructed from Whiskers.
- Each Whisker represents one possible attribute of data.</p>
- <p>On this page you can select which whiskers to include in your packet.</p>
+ <div class="section">
+ <p>One main feature of CATS is that packets are constructed from Whiskers.
+ Each Whisker represents one possible attribute of data.</p>
+ <p>On this page you can select which whiskers to include in your packet.</p>
+ </div>
<div class="section">
<h2>Identification</h2>
@@ -19,11 +21,11 @@
<p class="destination">
<input class="textinput dest_callsign" type="text" placeholder="Type callsign here">
<input class="textinput dest_ssid" type="text" placeholder="Type SSID here">
- <button class="btn" type="button" onclick="btn_remove_destination(this)">Remove</button>
+ <button class="btn" type="button" onclick="btn_send_remove_destination(this)">Remove</button>
</p>
</template>
<div id="destinations"></div>
- <button class="btn" type="button" onclick="btn_add_destination()">Add destination</button>
+ <button class="btn" type="button" onclick="btn_send_add_destination()">Add destination</button>
</div>
<div class="section">
<h2>Comment Whisker</h2>
@@ -58,7 +60,7 @@
</div>-->
<div class="section">
- <button class="btn" type="button" onclick="btn_send_packet()">Send</button>
+ <button class="btn" type="button" onclick="btn_send_send()">Send</button>
</div>
</div>
{% include "foot.html" %}