2020-05-02 18:41:37 +00:00
|
|
|
<?php
|
|
|
|
if ($logedin){
|
|
|
|
$info = api_get("accounts/verify_credentials");
|
|
|
|
if($info['error']){
|
|
|
|
header('Location: ./logout');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|
2020-04-01 00:46:27 +00:00
|
|
|
<div class='element'>
|
|
|
|
<div class='avatar' style='height:0px;'></div>
|
|
|
|
<div class='post' style='text-align:left;'>
|
|
|
|
<div style='padding:15px; width:90%; text-align:left; display:inline-block;' id="settings">
|
|
|
|
<h1><span class='fontello' style='font-size:inherit;'></span> Settings</h1>
|
2020-04-29 17:29:25 +00:00
|
|
|
<form method='post' enctype="multipart/form-data">
|
2020-04-01 00:46:27 +00:00
|
|
|
<input type='hidden' name='action' value='settings'>
|
|
|
|
<br>
|
2020-04-29 17:29:25 +00:00
|
|
|
<?php if ($logedin): ?>
|
|
|
|
<fieldset>
|
|
|
|
<legend>Account</legend>
|
|
|
|
<h2>Username</h2>
|
|
|
|
<div class='setting'>
|
|
|
|
<input type='text' name='username' value='<?php echo $info['display_name']; ?>'>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2>Bio</h2>
|
|
|
|
<div class='setting'>
|
|
|
|
<textarea name='bio' style='width:85%; height:100px'><?php
|
2020-10-15 19:25:16 +00:00
|
|
|
echo trim(strip_tags(str_replace(array("<br/>","<br />"),"\n",$info['note'])));
|
2020-04-29 17:29:25 +00:00
|
|
|
?></textarea>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2>Avatar</h2>
|
|
|
|
<div class='setting'>
|
|
|
|
<div class='avatar' style='height:80px; background-image:url("<?php echo $info['avatar']; ?>"); background-size:80px; margin-top:0px !important; margin-left:0px !important;'></div><input type='file' name='avatar'>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div style='clear:both;'></div>
|
|
|
|
<h2>Header</h2>
|
|
|
|
<div class='setting' style='clear:both;'>
|
|
|
|
<div style='height:150px; width:300px; max-width:85%; background-image:url("<?php echo $info['header']; ?>"); background-size:cover; background-repeat: no-repeat; margin-top:0px !important; margin-left:0px !important;'></div><input type='file' name='header'>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<?php endif; ?>
|
|
|
|
<fieldset>
|
2020-04-01 00:46:27 +00:00
|
|
|
<legend>Timeline</legend>
|
2020-04-29 17:29:25 +00:00
|
|
|
<?php if ($logedin): ?>
|
2020-04-01 00:46:27 +00:00
|
|
|
<h2>Show replies</h2>
|
|
|
|
<div class='setting'>
|
2020-04-21 22:42:31 +00:00
|
|
|
<select name="replies">
|
|
|
|
<option value="on" <?php echo ($user_settings['replies'] == 'on' ? "selected" : ""); ?>>All</option>
|
|
|
|
<option value="off" <?php echo ($user_settings['replies'] == 'off' ? "selected" : ""); ?>>Only to people i follow</option>
|
|
|
|
</select>
|
2020-04-01 00:46:27 +00:00
|
|
|
</div>
|
2020-04-29 17:29:25 +00:00
|
|
|
<?php endif; ?>
|
2020-04-01 00:46:27 +00:00
|
|
|
<h2>Show text-only posts</h2>
|
|
|
|
<div class='setting'>
|
|
|
|
<input type='radio' name='text' id='textOn' value='on' style='display:none;' <?php echo ($user_settings['text'] == 'on' ? "checked" : ""); ?>>
|
|
|
|
<label for='textOn'>Yes</label>
|
|
|
|
<input type='radio' name='text' id='textOff' value='off' style='display:none;' <?php echo ($user_settings['text'] == 'off' ? "checked" : ""); ?>>
|
|
|
|
<label for='textOff'>No</label>
|
|
|
|
</div>
|
|
|
|
<br><br>
|
|
|
|
<h2>Show reblogs</h2>
|
|
|
|
<div class='setting'>
|
2020-04-21 22:42:31 +00:00
|
|
|
<input type='radio' name='reblog' id='reblogOn' value='on' style='display:none;' <?php echo ($user_settings['reblog'] == 'on' ? "checked" : ""); ?>>
|
2020-04-01 00:46:27 +00:00
|
|
|
<label for='reblogOn'>Yes</label>
|
2020-04-21 22:42:31 +00:00
|
|
|
<input type='radio' name='reblog' id='reblogOff' value='off' style='display:none;' <?php echo ($user_settings['reblog'] == 'off' ? "checked" : ""); ?>>
|
2020-04-01 00:46:27 +00:00
|
|
|
<label for='reblogOff'>No</label>
|
|
|
|
</div>
|
2020-04-23 01:25:00 +00:00
|
|
|
<br><br>
|
|
|
|
<h2>Muted words</h2>
|
|
|
|
<span>One per line</span>
|
|
|
|
<div class='setting'>
|
2020-04-29 17:29:25 +00:00
|
|
|
<textarea name='mtwords' style='width:85%;'><?php
|
2020-04-23 01:25:00 +00:00
|
|
|
foreach($user_settings['mtwords'] as $word){
|
|
|
|
echo (empty($word) ? "" : trim($word)."\n");
|
|
|
|
}
|
|
|
|
?></textarea>
|
|
|
|
</div>
|
2020-04-01 00:46:27 +00:00
|
|
|
</fieldset>
|
|
|
|
|
2020-04-29 17:29:25 +00:00
|
|
|
<fieldset>
|
2020-04-01 00:46:27 +00:00
|
|
|
<legend>Attachments</legend>
|
|
|
|
<h2>Hide Attachments, show a link instead.</h2>
|
|
|
|
<div class='setting'>
|
|
|
|
<input type='radio' name='attach' id='a_hide' value='off' style='display:none;' <?php echo ($user_settings['attach'] == 'off' ? "checked" : ""); ?>>
|
|
|
|
<label for='a_hide'>Yes</label>
|
|
|
|
<input type='radio' name='attach' id='a_show' value='on' style='display:none;' <?php echo ($user_settings['attach'] == 'on' ? "checked" : ""); ?>>
|
|
|
|
<label for='a_show'>No</label>
|
|
|
|
</div>
|
|
|
|
<br><br>
|
|
|
|
<h2>Sensitive Media</h2>
|
|
|
|
<div class='setting'>
|
|
|
|
<input type='radio' name='explicit' id='hide' value='hide' style='display:none;' <?php echo ($user_settings['explicit'] == 'hide' ? "checked" : ""); ?>>
|
|
|
|
<label for='hide'>Hide</label>
|
|
|
|
<input type='radio' name='explicit' id='blur' value='blur' style='display:none;' <?php echo ($user_settings['explicit'] == 'blur' ? "checked" : ""); ?>>
|
|
|
|
<label for='blur'>Blur</label>
|
|
|
|
<input type='radio' name='explicit' id='show' value='off' style='display:none;' <?php echo ($user_settings['explicit'] == 'off' ? "checked" : ""); ?>>
|
|
|
|
<label for='show'>Show</label>
|
|
|
|
</div>
|
|
|
|
<br><br>
|
|
|
|
<h2>Loop videos</h2>
|
|
|
|
<div class='setting'>
|
|
|
|
<input type='radio' name='videoloop' id='loopOn' value='on' style='display:none;' <?php echo ($user_settings['videoloop'] == 'on' ? "checked" : ""); ?>>
|
|
|
|
<label for='loopOn'>Yes</label>
|
|
|
|
<input type='radio' name='videoloop' id='loopOff' value='off' style='display:none;' <?php echo ($user_settings['videoloop'] == 'off' ? "checked" : ""); ?>>
|
|
|
|
<label for='loopOff'>No</label>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
|
2020-04-29 17:29:25 +00:00
|
|
|
<fieldset>
|
2020-04-01 00:46:27 +00:00
|
|
|
<legend>User Interface</legend>
|
|
|
|
<h2>Theme.</h2>
|
|
|
|
<select name='theme' onChange='themecheck(this)'>
|
|
|
|
<?php
|
2020-04-13 16:30:51 +00:00
|
|
|
echo "<option value='default' ".($user_settings['theme'] == "default" ? "selected" : "").">default</option>";
|
2020-04-01 00:46:27 +00:00
|
|
|
foreach(themes("list") as $name){
|
|
|
|
echo "<option value='$name' ".($user_settings['theme'] == $name ? "selected" : "").">$name</option>";
|
|
|
|
}
|
|
|
|
echo "<option value='custom' ".($user_settings['theme'] == "custom" ? "selected" : "").">custom</option>";
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
|
|
|
|
<div id="customtheme"<?php echo ($user_settings['theme'] == "custom" ? "" : "style='display:none;'");?>>
|
|
|
|
<fieldset>
|
|
|
|
<legend>Custom Colors</legend>
|
|
|
|
Foreground:<br>
|
|
|
|
<input type="color" name="fg" value="#<?php echo (!empty($theme) ? $theme['fg'] : "#ffffff");?>"><br><br>
|
|
|
|
Background:<br>
|
|
|
|
<input type="color" name="bg" value="#<?php echo (!empty($theme) ? $theme['bg'] : "#2b475d");?>"><br><br>
|
|
|
|
Text Color:<br>
|
|
|
|
<input type="color" name="tx" value="#<?php echo (!empty($theme) ? $theme['tx'] : "#000000");?>"><br><br>
|
|
|
|
Link Color:<br>
|
|
|
|
<input type="color" name="lc" value="#<?php echo (!empty($theme) ? $theme['lc'] : "#4682b4");?>"><br><br>
|
|
|
|
Border Color:<br>
|
|
|
|
<input type="color" name="bc" value="#<?php echo (!empty($theme) ? $theme['bc'] : "#ffffff");?>"><br><br>
|
|
|
|
Border Width:<br>
|
|
|
|
<input type="text" name="bw" value="<?php echo (!empty($theme) ? $theme['bw'] : "0");?>"><br><br>
|
|
|
|
Border Radius:<br>
|
|
|
|
<input type="text" name="br" value="<?php echo (!empty($theme) ? $theme['br'] : "3");?>"><br><br>
|
|
|
|
</fieldset>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
<br><br>
|
|
|
|
<br><br>
|
2020-04-29 17:29:25 +00:00
|
|
|
<input type="submit" value="Save" id="send">
|
2020-04-01 00:46:27 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|