2024-01-21 14:12:11 +01:00
|
|
|
<div id="renameFileModal" class="modal" aria-labelledby="renameFileModalLabel">
|
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">
|
2024-02-19 22:38:42 +01:00
|
|
|
<div class="caption" id="renameFileModalLabel"><?= $this->translate('panel.pages.renameFile') ?></div>
|
2023-08-06 13:33:50 +02:00
|
|
|
</div>
|
|
|
|
<div class="modal-content">
|
2024-01-21 20:58:47 +01:00
|
|
|
<label class="form-label form-label-required" for="filename"><?= $this->translate('panel.pages.renameFile.name') ?>:</label>
|
|
|
|
<input class="form-input" id="file-name" type="text" required name="filename" autofocus>
|
2023-08-06 13:33:50 +02:00
|
|
|
<input type="hidden" name="csrf-token" value="<?= $csrfToken ?>">
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
2024-01-27 15:33:40 +01:00
|
|
|
<button type="button" class="button button-secondary" data-dismiss="renameFileModal"><?= $this->icon('times-circle') ?> <?= $this->translate('panel.modal.action.cancel') ?></button>
|
2024-01-21 20:58:47 +01:00
|
|
|
<button type="submit" class="button button-accent button-right" data-command="delete"><?= $this->icon('pencil') ?> <?= $this->translate('panel.modal.action.rename') ?></button>
|
2023-08-06 13:33:50 +02:00
|
|
|
</div>
|
2023-07-30 17:32:20 +02:00
|
|
|
</form>
|
|
|
|
</div>
|
2024-04-27 13:06:15 +02:00
|
|
|
</div>
|