mirror of
https://github.com/nextcloud/all-in-one.git
synced 2026-05-31 07:50:08 +00:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: szaimen <42591237+szaimen@users.noreply.github.com>
19 lines
705 B
Twig
19 lines
705 B
Twig
<!--
|
|
SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
|
-->
|
|
|
|
{% extends "layout.twig" %}
|
|
|
|
{% block body %}
|
|
<div class="login">
|
|
<svg class="nextcloud-logo" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 142 100" width="142" height="100">
|
|
<use href="img/nextcloud-logo.svg#logo"></use>
|
|
<use href="img/nextcloud-logo.svg#Nextcloud"></use>
|
|
<text x="10" y="50" fill="var(--color-nextcloud-logo)" class="fallback-text">Nextcloud Logo</text>
|
|
</svg>
|
|
<h2>Nextcloud All-In-One is already installed</h2>
|
|
<a href="." class="button">Open Nextcloud AIO</a>
|
|
</div>
|
|
{% endblock %}
|