accounts_accept_terms: Fix title and submit button text.

This commit changes the title of page to "Welcome to Zulip"
and submit button text to "Continue". We do this change because
same page will be used to allow users to set email address
visibility during first login even when organization has not
configured terms of service and we can avoid using conditionals
now by using this title and submit button text.
This commit is contained in:
Sahil Batra 2023-05-15 08:28:01 +05:30 committed by Tim Abbott
parent 8ca060531f
commit f58e3d2cf6
1 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ the registration flow has its own (nearly identical) copy of the fields below in
<div class="account-accept-terms-page flex full-page">
<div class="center-block new-style">
<div class="pitch">
<h1 class="get-started">{{ _("Accept the Terms of Service") }}</h1>
<h1 class="get-started">{{ _("Welcome to Zulip") }}</h1>
</div>
<div class="white-box">
@ -58,7 +58,7 @@ the registration flow has its own (nearly identical) copy of the fields below in
{% endif %}
</div>
<div class="controls">
<button id="accept_tos_button" type="submit">{{ _('Accept') }}</button>
<button id="accept_tos_button" type="submit">{{ _('Continue') }}</button>
<input type="hidden" name="next" value="{{ next }}" />
</div>
</form>