mirror of https://github.com/itflow-org/itflow
72 lines
2.8 KiB
PHP
72 lines
2.8 KiB
PHP
<?php
|
|
require_once "inc_all_admin.php";
|
|
?>
|
|
|
|
<div class="card card-dark">
|
|
<div class="card-header py-3">
|
|
<h3 class="card-title"><i class="fas fa-fw fa-paint-brush mr-2"></i>Theme</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action="post.php" method="post" autocomplete="off">
|
|
<input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token'] ?>">
|
|
|
|
<label>Select a Theme</label>
|
|
<div class="form-row">
|
|
|
|
<?php
|
|
|
|
foreach ($theme_colors_array as $theme_color) {
|
|
|
|
?>
|
|
|
|
<div class="col-3 text-center mb-3">
|
|
<div class="form-group">
|
|
<div class="custom-control custom-radio">
|
|
<input class="custom-control-input" type="radio" id="customRadio<?php echo $theme_color; ?>" name="theme" value="<?php echo $theme_color; ?>" <?php if ($config_theme == $theme_color) { echo "checked"; } ?>>
|
|
<label for="customRadio<?php echo $theme_color; ?>" class="custom-control-label">
|
|
<i class="fa fa-fw fa-6x fa-circle text-<?php echo $theme_color; ?>"></i>
|
|
<br>
|
|
<?php echo $theme_color; ?>
|
|
</label>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php } ?>
|
|
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<button type="submit" name="edit_theme_settings" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Set Theme</button>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card card-dark">
|
|
<div class="card-header py-3">
|
|
<h3 class="card-title"><i class="fas fa-fw fa-image mr-2"></i>Favicon</h3>
|
|
</div>
|
|
<div class="card-body">
|
|
<form action="post.php" method="post" enctype="multipart/form-data" autocomplete="off">
|
|
<input type="hidden" name="csrf_token" value="<?php echo $_SESSION['csrf_token'] ?>">
|
|
|
|
<img class="mb-3" src="<?php if(file_exists("uploads/favicon.ico")) { echo "uploads/favicon.ico"; } else { echo "favicon.ico"; } ?>">
|
|
|
|
<div class="form-group">
|
|
<input type="file" class="form-control-file" name="file" accept=".ico">
|
|
</div>
|
|
|
|
<hr>
|
|
|
|
<button type="submit" name="edit_favicon_settings" class="btn btn-primary text-bold"><i class="fa fa-check mr-2"></i>Upload Icon</button>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<?php
|
|
require_once "footer.php";
|
|
|