You've already forked snikket-web-portal
- Add missing labels for form fields - Improve contrast slightly - Remove incorrect aria-label= and title= attributes - Use fieldset for radio button groups
34 lines
1.3 KiB
HTML
34 lines
1.3 KiB
HTML
{% from "library.j2" import form_button, render_errors %}
|
|
<form method="POST" action="{{ url_for(".create_invite") }}">
|
|
{{- invite_form.csrf_token -}}
|
|
<div class="form layout-expanded">
|
|
<h2 class="form-title">{% trans %}Create new invitation{% endtrans %}</h2>
|
|
<p class="form-descr weak">{% trans %}Create a new invitation link to invite more users to your Snikket service by clicking the button below.{% endtrans %}</p>
|
|
<div class="f-ebox">
|
|
<fieldset>{#- -#}
|
|
<legend>{{ invite_form.type_.label.text }}</legend>
|
|
{{- invite_form.type_ -}}
|
|
</fieldset>
|
|
</div>
|
|
<div class="f-ebox">
|
|
{{ invite_form.lifetime.label }}
|
|
<div class="select-wrap">{{ invite_form.lifetime }}</div>
|
|
</div>
|
|
<div class="f-ebox">
|
|
{#
|
|
NOTE: This is for when/if we ever support multi-group invites.
|
|
Also see the NOTE in admin.py
|
|
{{ invite_form.circles.label(class="required") }}
|
|
{%- for choice in invite_form.circles -%}
|
|
{{ choice }}{{ choice.label }}
|
|
{%- endfor -%}
|
|
#}
|
|
{{- invite_form.circles.label -}}
|
|
<div class="select-wrap">{{ invite_form.circles }}</div>
|
|
{%- call render_errors(invite_form.circles) -%}{%- endcall -%}
|
|
</div>
|
|
<div class="f-bbox">
|
|
{%- call form_button("create_link", invite_form.action_create_invite, class="primary") %}{% endcall -%}
|
|
</div>
|
|
</div></form>
|