diff options
Diffstat (limited to 'templates/project_remove.php')
-rw-r--r-- | templates/project_remove.php | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/templates/project_remove.php b/templates/project_remove.php new file mode 100644 index 00000000..f63c4031 --- /dev/null +++ b/templates/project_remove.php @@ -0,0 +1,16 @@ +<section id="main"> + <div class="page-header"> + <h2><?= t('Remove project') ?></h2> + </div> + + <div class="confirm"> + <p class="alert alert-info"> + <?= t('Do you really want to remove this project: "%s"?', Helper\escape($project['name'])) ?> + </p> + + <div class="form-actions"> + <a href="?controller=project&action=remove&project_id=<?= $project['id'] ?>" class="btn btn-red"><?= t('Yes') ?></a> + <?= t('or') ?> <a href="?controller=project"><?= t('cancel') ?></a> + </div> + </div> +</section>
\ No newline at end of file |