It seems that the mailman update is more complicated than I originally thought. So I decided to start with clean role and will slowly start adding new changes. Signed-off-by: Michal Konecny <mkonecny@redhat.com>
21 lines
510 B
HTML
21 lines
510 B
HTML
{% extends "account/base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block head_title %}{% trans "Signup" %}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>{% trans "Sign Up" %}</h1>
|
|
|
|
<p>
|
|
{% blocktrans %}
|
|
Account creation for the Fedora mailing-lists is done by
|
|
<a href="https://accounts.fedoraproject.org/">creating an account in FAS</a>.
|
|
{% endblocktrans %}
|
|
</p>
|
|
|
|
{% url LOGIN_URL as login_url %}
|
|
<p>{% blocktrans %}Already have an account? Then please <a href="{{login_url}}">sign in</a>.{% endblocktrans %}</p>
|
|
|
|
|
|
{% endblock %}
|