mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-04-29 10:10:19 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
29 lines
660 B
HTML
29 lines
660 B
HTML
{# SPDX-License-Identifier: AGPL-3.0-or-later #}
|
|
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Setup My Home</h>
|
|
|
|
{% if not has_homedir %}
|
|
<p>
|
|
{% trans "You do not have a home directory." %}
|
|
<span>
|
|
{% trans "Create one to begin receiving emails." %}
|
|
</span>
|
|
</p>
|
|
|
|
<form action="{{ request.path }}" method="post">
|
|
{% csrf_token %}
|
|
<button class="btn btn-primary" type="submit" name="btn_mkhome">
|
|
{% trans "Create home directory" %}
|
|
</button>
|
|
</form>
|
|
{% else %}
|
|
<p>{% trans "Your home directory is ready to receive emails." %}</p>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|