2016-12-20 10:41:46 +01:00
{% extends "zerver/portico.html" %}
2022-09-06 12:04:03 +02:00
{% block title %}
< title > {{ _("Find your accounts") }} | Zulip< / title >
{% endblock %}
2016-12-20 10:41:46 +01:00
{% block portico_content %}
2017-04-20 21:02:56 +02:00
2017-08-28 23:27:16 +02:00
< div class = "app find-account-page flex full-page" >
2017-05-01 21:33:41 +02:00
< div class = "inline-block new-style" >
< div class = "lead" >
2023-03-30 02:40:42 +02:00
< h1 class = "get-started" > {{ _("Find your Zulip accounts") }}< / h1 >
2017-05-01 21:33:41 +02:00
< / div >
2016-12-20 10:41:46 +01:00
2017-08-28 23:27:16 +02:00
< div class = "app-main find-account-page-container white-box" >
2017-05-01 21:33:41 +02:00
{% if emails %}
< div id = "results" >
< p >
2023-03-30 02:40:42 +02:00
{% trans %}
2024-02-01 17:39:42 +01:00
Emails sent! The addresses entered on the previous page are listed below:
2023-03-30 02:40:42 +02:00
{% endtrans %}
2017-05-01 21:33:41 +02:00
< / p >
2017-02-08 00:29:38 +01:00
2017-05-01 21:33:41 +02:00
< ul >
{% for email in emails %}
< li > {{ email }}< / li >
{% endfor %}
< / ul >
2017-02-08 00:29:38 +01:00
2024-01-16 10:21:43 +01:00
{% trans %}
If you don't receive an email, you can
< a href = "{{ current_url }}" > find accounts for another email address< / a > .
{% endtrans %}
2017-09-30 20:33:47 +02:00
{% include 'zerver/dev_env_email_access_details.html' %}
2017-05-01 21:33:41 +02:00
< / div >
{% else %}
2017-08-28 23:27:16 +02:00
< div class = "find-account-form" >
2017-05-01 21:33:41 +02:00
< p >
2024-10-09 16:54:07 +02:00
{% if corporate_enabled %}
{% trans %}Enter your email address to receive an email with the URLs for all the Zulip Cloud organizations in which you have active accounts.{% endtrans %}
{% else %}
{% trans %}Enter your email address to receive an email with the URLs for all the Zulip organizations on this server in which you have active accounts.{% endtrans %}
{% endif %}
{% trans %}If you have also forgotten your password, you can < a href = "/help/change-your-password" > reset it< / a > .{% endtrans %}
2017-05-01 21:33:41 +02:00
< / p >
2017-08-28 23:27:16 +02:00
< form class = "form-inline" id = "find_account" name = "email_form"
2024-01-16 10:21:43 +01:00
action="{{ current_url }}" method="post">
2017-05-01 21:33:41 +02:00
{{ csrf_input }}
< div class = "input-box moving-label horizontal" >
< div class = "inline-block relative" >
< input type = "text" autofocus id = "emails" name = "emails" required / >
2023-03-30 02:40:42 +02:00
< label for = "emails" > {{ _('Email address') }}< / label >
2017-05-01 21:33:41 +02:00
< / div >
2017-08-28 23:27:16 +02:00
< button type = "submit" > {{ _('Find accounts') }}< / button >
2017-05-01 21:33:41 +02:00
< / div >
2024-10-30 19:31:42 +01:00
< div class = "find-account-form-tip" > < i > {{ form.emails.help_text }}< / i > < / div >
2017-05-01 21:33:41 +02:00
< / form >
< div id = "errors" > < / div >
{% if form.emails.errors %}
{% for error in form.emails.errors %}
< div class = "alert alert-error" > {{ error }}< / div >
{% endfor %}
{% endif %}
< / div >
2017-02-24 16:42:13 +01:00
{% endif %}
< / div >
2016-12-20 10:41:46 +01:00
< / div >
< / div >
{% endblock %}