2021-08-20 13:59:08 -04:00
|
|
|
<?php
|
2024-05-27 04:08:53 -04:00
|
|
|
/**
|
|
|
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
*/
|
2021-08-20 13:59:08 -04:00
|
|
|
/** @var array $_ */
|
|
|
|
|
/** @var \OCP\IL10N $l */
|
|
|
|
|
/** @var \OCP\Defaults $theme */
|
|
|
|
|
?>
|
|
|
|
|
|
2025-06-15 09:48:40 -04:00
|
|
|
<div class="guest-box">
|
2021-08-20 13:59:08 -04:00
|
|
|
<h2><?php p($_['title']) ?></h2>
|
|
|
|
|
<p><?php p($_['message']) ?></p>
|
2025-05-14 09:51:42 -04:00
|
|
|
<p><a class="button primary" href="<?php p(\OCP\Server::get(\OCP\IURLGenerator::class)->linkTo('', 'index.php')) ?>">
|
2021-08-20 13:59:08 -04:00
|
|
|
<?php p($l->t('Go to %s', [$theme->getName()])); ?>
|
|
|
|
|
</a></p>
|
|
|
|
|
</div>
|