Files
zulip/web/templates/demo_organization_add_email_modal.hbs
Lauryn Menard 7d813e2836 demo-orgs: Update note about updating name in add email modal.
Instead of using the "tip" formatting for the note suggesting
updating the name for the owner's account before inviting other
users, to be just normal text at the top of the modal.

Part of #34447.
2025-04-29 09:39:52 -07:00

12 lines
786 B
Handlebars

<form id="demo_organization_add_email_form">
<p>{{t "If you haven't updated your name, you may want to do so before inviting other users to join." }}</p>
<div class="input-group">
<label for="demo_organization_add_email" class="modal-field-label">{{t "Email" }}</label>
<input id="demo_organization_add_email" type="text" name="email" class="modal_text_input" value="{{delivery_email}}" autocomplete="off" spellcheck="false" autofocus="autofocus"/>
</div>
<div class="input-group">
<label for="demo_organization_update_full_name" class="modal-field-label">{{t "Name" }}</label>
<input id="demo_organization_update_full_name" name="full_name" type="text" class="modal_text_input" value="{{full_name}}" maxlength="60" />
</div>
</form>