46 lines
1.4 KiB
PHP
46 lines
1.4 KiB
PHP
<?php
|
|
|
|
$sql = "SELECT `settings` FROM `VokabelBox2Users` WHERE `userid` = '$userid'";
|
|
$result_articles = mysql_query ($sql, $ezine_db);
|
|
while ($articleDb = mysql_fetch_object($result_articles))
|
|
{
|
|
$settings = json_decode($articleDb->settings, true);
|
|
}
|
|
|
|
$appearance = $settings[0]['appearance'];
|
|
|
|
|
|
?>
|
|
<div class="fixed-title">
|
|
<h2>Einstellungen</h2>
|
|
</div>
|
|
|
|
<div class="fixed-title-spacer">
|
|
<div class="folder-view-wrapper">
|
|
<div class="folder-divider">
|
|
<span>Design</span>
|
|
</div>
|
|
<div class="settings-section">
|
|
<input type="range" min="1" max="3" value="<?php echo $_COOKIE["vokspace-appearance"]; ?>" onchange="changeAppearance()" id="change-appearance" />
|
|
<table width="100%">
|
|
<tr>
|
|
<td width="33%" align="left">Hell</td>
|
|
<td width="33%" align="center">Gedimmt</td>
|
|
<td width="33%" align="right">Dunkel</td>
|
|
</tr>
|
|
</table>
|
|
<div style="clear: both;"></div>
|
|
</div>
|
|
<div class="folder-divider">
|
|
<span>Über</span>
|
|
</div>
|
|
<div class="form">
|
|
<button onclick="window.location.href='https://www.timvandenboom.de/impressum'" class="default-button">Impressum</button>
|
|
</div>
|
|
<div class="form">
|
|
<button onclick="window.location.href='https://www.timvandenboom.de/datenschutz'" class="default-button">Datenschutz</button>
|
|
</div>
|
|
<p align="center">© Tim van den Boom 2021</p>
|
|
</div>
|
|
</div>
|