mirror of
https://github.com/nextcloud/server.git
synced 2024-12-28 07:58:42 +00:00
aa8df9b05f
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
20 lines
537 B
PHP
20 lines
537 B
PHP
<?php
|
|
/**
|
|
* SPDX-FileCopyrightText: 2021 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
/** @var array $_ */
|
|
/** @var \OCP\IL10N $l */
|
|
/** @var \OCP\Defaults $theme */
|
|
?>
|
|
<div class="update">
|
|
<form method="POST">
|
|
<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>
|