summaryrefslogtreecommitdiff
path: root/core/views/admin_themes.html.php
diff options
context:
space:
mode:
Diffstat (limited to 'core/views/admin_themes.html.php')
-rw-r--r--core/views/admin_themes.html.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/core/views/admin_themes.html.php b/core/views/admin_themes.html.php
new file mode 100644
index 00000000..b1fefd1e
--- /dev/null
+++ b/core/views/admin_themes.html.php
@@ -0,0 +1,13 @@
+<? defined("SYSPATH") or die("No direct script access.") ?>
+<div id="gThemes">
+ <h1><?= _("Theme Administration") ?></h2>
+ <p><?= _("These are the themes in your system") ?></p>
+ <form method="post" action="<?= url::site("admin/themes/save") ?>">
+ <?= access::csrf_form_field() ?>
+ <? foreach ($themes as $theme): ?>
+ <input type="radio" name="theme" value="<?= $theme ?>"
+ <? if ($theme == $active): ?> checked="checked" <? endif ?> /><?= $theme ?>
+ <? endforeach ?>
+ <input type="submit" value="<?= _("Save") ?>"/>
+ </form>
+</div>