formwork/panel/views/modals/renameFile.php

19 lines
1.0 KiB
PHP
Raw Normal View History

2023-07-30 17:32:20 +02:00
<div id="renameFileModal" class="modal">
2023-08-06 13:33:50 +02:00
<div class="modal-container">
2023-07-30 17:32:20 +02:00
<form action="" method="post">
2023-08-06 13:33:50 +02:00
<div class="modal-header">
<h3 class="caption"><?= $this->translate('panel.pages.renameFile') ?></h3>
</div>
<div class="modal-content">
2024-01-01 22:34:39 +01:00
<label class="label-required" for="filename"><?= $this->translate('panel.pages.renameFile.name') ?>:</label>
2023-08-06 13:33:50 +02:00
<input id="file-name" type="text" required name="filename" autofocus>
<input type="hidden" name="csrf-token" value="<?= $csrfToken ?>">
</div>
<div class="modal-footer">
<button type="button" data-dismiss="renameFileModal"><?= $this->icon('times-circle') ?> <?= $this->translate('panel.modal.action.cancel') ?></button>
<button type="submit" class="button-accent button-right" data-command="delete"><?= $this->icon('pencil') ?> <?= $this->translate('panel.modal.action.rename') ?></button>
</div>
2023-07-30 17:32:20 +02:00
</form>
</div>
</div>