mirror of
https://codeberg.org/VnPower/PixivFE
synced 2024-12-06 19:16:23 +01:00
49 lines
2.1 KiB
HTML
49 lines
2.1 KiB
HTML
<div class="container">
|
|
<h2>Settings</h2>
|
|
{{ if isset(Message) }}
|
|
{{ Message }}
|
|
{{ end }}
|
|
<form action="/settings/token" method="post">
|
|
<fieldset class="settings-fieldset">
|
|
<legend>Custom token</legend>
|
|
<p>Experimental, set this to enable the landing page. Proceed with caution.</p>
|
|
<input type="text" name="token" autocomplete="off" />
|
|
<input type="submit" value="Apply" />
|
|
|
|
</fieldset>
|
|
</form>
|
|
<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="sex.nyan.xyz" />
|
|
<label for="image-proxy">___.nyan.xyz</label>
|
|
<br />
|
|
<input type="radio" name="image-proxy" id="image-proxy" value="pximg.wjghj.cn" />
|
|
<label for="image-proxy">pximg.wjghj.cn</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>
|