mirror of
https://github.com/zulip/zulip.git
synced 2026-07-09 21:21:47 +08:00
If a user receives more than one invite to join a realm, after that user registers, all the remaining invitations should be revoked, preventing them to be listed in active invitations on admin panel. To do this, we added a new prereg_user status, STATUS_REVOKED. We also added a confirmation_link_expired_error page in case the user tries click on a revoked invitaion. This page has a link to login page. Fixes: #12629 Co-authored-by: Arunika <arunikayadav42@gmail.com>
15 lines
507 B
HTML
15 lines
507 B
HTML
{% extends "zerver/portico_signup.html" %}
|
|
|
|
{% block portico_content %}
|
|
<div class="app portico-page">
|
|
<div class="app-main portico-page-container center-block flex full-page account-creation new-style">
|
|
<div class="inline-block">
|
|
<div class="app-main white-box">
|
|
<h1>{{ _("The registration link has expired or is not valid.") }}</h1>
|
|
<a href="{{ login_url }}">{{ _("Log in") }}</a>.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|