12345678910111213141516171819 |
- <?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>
|