raspap-webgui/templates/themes.php

25 lines
895 B
PHP
Raw Normal View History

2019-08-19 00:35:58 +02:00
<div class="row">
2019-08-19 02:11:59 +02:00
<div class="col-lg-12">
<div class="panel panel-primary">
<div class="panel-heading"><i class="fa fa-wrench fa-fw"></i> <?php echo _("Change Theme"); ?></div>
<div class="panel-body">
2019-08-19 00:35:58 +02:00
2019-08-19 02:11:59 +02:00
<h4><?php echo _("Theme settings"); ?></h4>
2019-08-19 00:35:58 +02:00
2019-08-19 02:11:59 +02:00
<div class="row">
<div class="form-group col-md-6">
<label for="code"><?php echo _("Select a theme"); ?></label>
<?php SelectorOptions("theme", $themes, $selectedTheme, "theme-select") ?>
2019-08-19 02:11:59 +02:00
</div>
</div>
2019-08-19 00:35:58 +02:00
2019-08-19 02:11:59 +02:00
<form action="?page=system_info" method="POST">
<?php echo CSRFTokenFieldTag() ?>
2019-08-19 03:10:11 +02:00
<a href="?page=<?php echo $_GET['page'] ?>" class="btn btn-outline btn-primary"><?php echo _("Refresh"); ?></a>
2019-08-19 02:11:59 +02:00
</form>
2019-08-19 00:35:58 +02:00
2019-08-19 02:11:59 +02:00
</div><!-- /.panel-body -->
</div><!-- /.panel-primary -->
</div><!-- /.col-lg-12 -->
2019-08-19 00:35:58 +02:00
</div><!-- /.row -->