2021-08-27 18:07:23 -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-27 18:07:23 -04:00
|
|
|
/** @var array $_ */
|
|
|
|
|
/** @var \OCP\IL10N $l */
|
|
|
|
|
/** @var \OCP\Defaults $theme */
|
|
|
|
|
?>
|
2025-06-15 09:46:47 -04:00
|
|
|
<div class="guest-box">
|
2023-03-20 09:38:26 -04:00
|
|
|
<form method="POST">
|
2021-08-27 18:07:23 -04:00
|
|
|
<h2><?php p($_['title']) ?></h2>
|
|
|
|
|
<p><?php p($_['message']) ?></p>
|
|
|
|
|
<div class="buttons">
|
|
|
|
|
<input type="submit" class="primary" value="<?php p($_['action']); ?>">
|
|
|
|
|
</div>
|
|
|
|
|
<input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>">
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|