comparison sat_templates/templates/bulma/call/call.html @ 360:c98a0a4a3fd0

bulma: "call" template, first draft: Basic template to make or receive calls. rel 422
author Goffi <goffi@goffi.org>
date Thu, 01 Jun 2023 20:50:47 +0200
parents
children a5a80d761e3e
comparison
equal deleted inserted replaced
359:16b3a2988afd 360:c98a0a4a3fd0
1 {% if not embedded %}
2 {% set loading_screen = true %}
3 {% extends 'base/base.html' %}
4 {% endif %}
5
6 {% block body %}
7 <section class="section">
8
9 <div class="call_box">
10 <video id="remote_video" autoplay playsinline></video>
11 <video id="local_video" autoplay playsinline muted></video>
12 </div>
13
14 <div class="field is-horizontal">
15 <div class="field-label is-normal">
16 <label class="label" for="jid">{% trans %}Callee JID{% endtrans %}</label>
17 </div>
18 <div class="field-body">
19 <div class="field">
20 <div class="control">
21 <input class="input" type="text" id="callee_jid" value="louise@tazar3.int">
22 </div>
23 </div>
24 <div class="field">
25 <div class="control">
26 <button class="button is-primary" id="call_btn">&#128222; {% trans %}Call{% endtrans %}</button>
27 <button class="button is-hidden" id="hangup_btn">{% trans %}Hang Up{% endtrans %}</button>
28 </div>
29 </div>
30 </div>
31 </div>
32
33
34 </section>
35 {% endblock body %}