registration: Collect organization type on sign-up.

This commit is contained in:
Eeshan Garg
2021-06-24 15:35:06 -02:30
committed by Tim Abbott
parent 43f3f9221d
commit faa695e86d
11 changed files with 168 additions and 15 deletions

View File

@@ -47,6 +47,20 @@ Form is validated both client-side using jquery-validate (see signup.js) and ser
</div>
</div>
<div class="input-box">
<div class="inline-block relative">
<select name="realm_type" id="realm_type">
{% for realm_type in sorted_realm_types %}
{% if not realm_type.hidden %}
<option value="{{ realm_type.id }}">{{ _(realm_type.name) }}</option>
{% endif %}
{% endfor %}
</select>
</div>
<label for="realm_type" class="inline-block label-title">{{ _('Organization type') }}</label>
</div>
<div class="input-box">
<label class="static org-url">
{{ _('Organization URL') }}