mirror of https://github.com/zulip/zulip.git
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 %}
|