confirmation.php 612 B

1234567891011121314151617181920
  1. <?php
  2. /** @var array $_ */
  3. /** @var \OCP\IL10N $l */
  4. /** @var \OCP\Defaults $theme */
  5. ?>
  6. <div class="update">
  7. <form method="POST" action="<?php print_unescaped($_['targetUrl']);?>">
  8. <h2><?php p($_['title']) ?></h2>
  9. <p><?php p($_['message']) ?></p>
  10. <div class="buttons">
  11. <input type="submit" class="primary" value="<?php p($_['action']); ?>">
  12. </div>
  13. <?php foreach ($_['parameters'] as $name => $value) {?>
  14. <input type="hidden" name="<?php p($name); ?>" value="<?php p($value); ?>">
  15. <?php } ?>
  16. <input type="hidden" name="requesttoken" value="<?php p($_['requesttoken']) ?>">
  17. </form>
  18. </div>