treebird/static/config.html
me@ow.nekobit.net 9041c53b24 Config page
FossilOrigin-Name: 7318b09f6feb942d0c1807d225eabf9d5701459ae954e02474b41ebcf7159de0
2022-02-01 00:19:04 +00:00

49 lines
1.5 KiB
HTML

<div id="config-page">
<form action="/config" method="post">
<h1>General</h1>
<h3>JavaScript</h3>
<ul>
<li>
<input type="checkbox" id="cfgjsactions" name="jsactions">
<label for="cfgjsactions">Quick actions - Likes, Boosts, etc done in background</label>
</li>
<li>
<input type="checkbox" id="cfgjsreply" name="jsreply">
<label for="cfgjsreply">Quick reply - Replies don't require redirects</label>
</li>
<li>
<input type="checkbox" id="cfgjslive" name="jslive">
<label for="cfgjslive">Live statuses - Statuses fetch on the fly</label>
</li>
<li>
<input type="checkbox" id="cfgjsreply" name="jsreply">
<label for="cfgjsreply">Quick reply - Replies don't require redirects</label>
</li>
</ul>
<!-- Appearance -->
<h1>Appearance</h1>
<h3>Theme variant</h3>
<ul>
<li>
<label for="cfgthemevar">Theme variant</label>
<select name="theme" id="cfgthemevar">
<option value="ratfe20">RatFE 2.0 - Default, simple theme</option>
<option value="ratfe30">RatFE 3.0 - Flat, modern theme</option>
</select>
</li>
</ul>
<h3>Color Scheme</h3>
<ul>
<li>
<input type="radio" id="cfglight" name="themeclr" value="light" checked>
<label for="cfglight">Light</label>
</li>
<li>
<input type="radio" id="cfgdark" name="themeclr" value="dark">
<label for="cfgdark">Dark</label>
</li>
</ul>
</form>
</div>