Files
PixivFE/template/pages/settings.jet.html
T
2023-07-26 20:22:17 +07:00

36 lines
1.6 KiB
HTML

<div class="container">
<h2>Login</h2>
<p>Go to <a href="/login">this page</a> to login</p>
<h2>Settings</h2>
<fieldset class="settings-fieldset">
<form action="/settings/image_server" method="post">
<legend>Image proxy server</legend>
<input type="radio" name="image-proxy" id="image-proxy" value="i.pixiv.cat" />
<label for="image-proxy">i.pixiv.cat</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="px2.rainchan.win" />
<label for="image-proxy">px2.rainchan.win</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="px3.rainchan.win" />
<label for="image-proxy">px3.rainchan.win</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="px.s.rainchan.win" />
<label for="image-proxy">px.s.rainchan.win</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="piv.deception.world" />
<label for="image-proxy">piv.deception.world</label>
<br />
<br />
<input type="submit" value="Apply" />
</form>
<form action="/settings/image_server" method="post">
<label for="image-proxy">Custom image proxy server</label>
<br />
<input type="text" name="image-proxy" id="image-proxy" placeholder="Paste the address here..."
autocomplete="off" />
<br />
<input type="submit" value="Apply" />
</form>
</fieldset>
</div>