Mercurial > libervia-templates
view sat_templates/templates/bulma/invitation/invite_by_email.html @ 400:140690a18b63
call: group call design:
Design for group call (which is used for both group call and A/V conferences) has been
improved to:
- have a working fullscreen button;
- have a better display of peer users in grid, with responsive design;
- have a nicer design for peer user, and adding avatar/nickname as overlay on the bottom
of the video stream;
- add a way to (un)pin a peer user, which make is appear on the whole width on top of the
grid.
rel 448
HG<S-Insert>: changed sat_templates/templates/bulma/call/group_peer.html
author | Goffi <goffi@goffi.org> |
---|---|
date | Tue, 06 Aug 2024 23:50:17 +0200 |
parents | b6937cf854f0 |
children |
line wrap: on
line source
{% import 'input/form.html' as form with context %} {% import 'input/field.html' as field with context %} <div class="modal is-active"> <div class="modal-background"></div> <div class="modal-card"> <header class="modal-card-head"> <p class="modal-card-title">{% trans %}Invite somebody by email{% endtrans %}</p> <button class="delete click_to_close" aria-label="close"></button> </header> <section class="modal-card-body"> {% call form.form(id="email_invitation_form") %} {{ field.email("email", _("email"), required=true, icon_left="mail") }} {{ field.text("name", _("name"), required=true, icon_left="person") }} {% endcall %} </section> <footer class="modal-card-foot"> {{ field.submit( _("Send invitation"), id="email_invitation_submit", class="button is-success", attr={'form': 'email_invitation_form'} ) }} <button class="button click_to_close">{% trans %}Cancel{% endtrans %}</button> </footer> </div> </div>