FreedomBox/plinth/templates/first_setup.html
Sunil Mohan Adapa ae535268b2
ui: Use common styling to hide logo during firstboot
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
Reviewed-by: Veiko Aasa <veiko17@disroot.org>
2020-12-19 16:26:52 +02:00

31 lines
696 B
HTML

{% extends "base_firstboot.html" %}
{% comment %}
# SPDX-License-Identifier: AGPL-3.0-or-later
{% endcomment %}
{% load bootstrap %}
{% load i18n %}
{% load static %}
{% block body_class %}
no-brand
{% endblock %}
{% block content %}
{% if is_first_setup_running %}
<div class="alert alert-warning" role="alert">
{% blocktrans trimmed %}
Please wait for {{ box_name }} to finish installation.
You can start using your {{ box_name }} once it is done.
{% endblocktrans %}
</div>
{% endif %}
<p class="text-center">
<img src="{% static 'theme/img/freedombox-logo-standard.svg' %}"
alt="{{ box_name }}" width="640"/>
</p>
{% endblock %}