2013-07-29 23:03:31 +02:00
{% extends "zerver/portico_signup.html" %}
2012-10-16 06:03:29 +02:00
{# Displayed after a user attempts to sign up. #}
2022-09-06 12:04:03 +02:00
{% block title %}
< title > {{ _("Confirm your email address") }} | Zulip< / title >
{% endblock %}
2012-10-16 05:49:53 +02:00
{% block portico_content %}
2019-03-16 07:14:49 +01:00
<!-- The following empty tag has unique data - page - id so that this
page can be easily identified in it's respective JavaScript file -->
< div data-page-id = "accounts-send-confirm" > < / div >
2013-09-13 06:06:10 +02:00
< div class = "app portico-page" >
2023-06-08 16:06:06 +02:00
< div class = "app-main portico-page-container center-block flex full-page account-creation account-email-confirm-container new-style" >
2017-05-03 19:49:10 +02:00
< div class = "inline-block" >
2012-09-28 22:47:05 +02:00
2017-05-03 19:49:10 +02:00
< div class = "get-started" >
2023-06-08 16:06:06 +02:00
< h1 > {{ _("Confirm your email address") }}< / h1 >
2017-05-03 19:49:10 +02:00
< / div >
< div class = "white-box" >
2023-06-08 16:06:06 +02:00
< p > {% trans %}To complete your registration, check your email account (< span class = "user_email semi-bold" > {{ email }}< / span > ) for a confirmation email from Zulip.{% endtrans %}< / p >
2017-05-03 19:49:10 +02:00
2017-09-30 20:33:47 +02:00
{% include 'zerver/dev_env_email_access_details.html' %}
2017-05-03 19:49:10 +02:00
2023-06-08 16:06:06 +02:00
< p > {% trans %}If you don't see a confirmation email in your Inbox or Spam folder, we can < a href = "#" id = "resend_email_link" > resend it< / a > .{% endtrans %}
< / p >
2018-08-24 10:22:11 +02:00
{% if realm_creation %}
< form class = "resend_confirm" action = "/new/" method = "post" style = "position: absolute;" >
2017-05-03 19:49:10 +02:00
{{ csrf_input }}
< input type = "hidden" class = "email" id = "email" value = "{{ email }}" name = "email" / >
2023-04-26 12:27:30 +02:00
< input type = "hidden" class = "realm_name" value = "{{ new_realm_name }}" name = "realm_name" / >
< input type = "hidden" class = "realm_type" value = "{{ realm_type }}" name = "realm_type" / >
< input type = "hidden" class = "realm_subdomain" value = "{{ realm_subdomain }}" name = "realm_subdomain" / >
2017-05-03 19:49:10 +02:00
< / form >
2018-08-24 10:22:11 +02:00
{% else %}
< form class = "resend_confirm" action = "/accounts/home/" method = "post" style = "position: absolute;" >
{{ csrf_input }}
< input type = "hidden" class = "email" id = "email" value = "{{ email }}" name = "email" / >
< / form >
{% endif %}
2017-05-03 19:49:10 +02:00
< / div >
< / div >
2017-02-24 16:42:13 +01:00
< / div >
2013-09-13 06:06:10 +02:00
< / div >
2012-09-28 22:47:05 +02:00
{% endblock %}
2013-04-02 20:47:18 +02:00
{% block customhead %}
2016-04-21 08:48:33 +02:00
{{ super() }}
2013-04-02 20:47:18 +02:00
{% endblock %}