Files
PixivFE/views/pages/settings.jet.html
T
2024-02-08 14:32:42 +07:00

68 lines
2.6 KiB
HTML

<div class="container">
<h2>Login</h2>
<p>Supported features (for now):</p>
<ul>
<li>Discovery page</li>
<li>Landing page</li>
</ul>
<p>
You can only login using your account's cookie, check out
<a
href="https://codeberg.org/VnPower/pixivfe/wiki/How-to-get-the-cookie-%28PIXIVFE_TOKEN%29"
>this page</a
>
to see how to get it.
</p>
<p>
Note that you will get logged out automatically every time the server
updates, if you are logged in before but got logged out recently, it is
probably because the instance owner restarted the server.
</p>
<form action="/settings/token" method="post">
<input type="text" name="token" autocomplete="off" />
<input type="submit" value="Apply" />
</form>
<hr />
<h2>Logout</h2>
<p>
You can safely logout here. This button will just delete the token directly
from this session.
</p>
<form action="/settings/logout" method="post">
<input type="submit" value="Logout!" />
</form>
<hr />
<h2>Image proxy server</h2>
<div class="form-field">
<form action="/settings/image_server" method="post">
<input type="radio" name="image-proxy" id="image-proxy" value="pixiv.tatakai.top" />
<label for="image-proxy">pixiv.tatakai.top</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="i.loli.best" />
<label for="image-proxy">i.****.best</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="pximg.cocomi.cf" />
<label for="image-proxy">pximg.cocomi.cf</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="mima.trafficpixel.tk" />
<label for="image-proxy">mima.trafficpixel.tk</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="img.chaotic.ninja" />
<label for="image-proxy">img.chaotic.ninja</label>
<br />
<input type="radio" name="image-proxy" id="image-proxy" value="pixiv.cat" />
<label for="image-proxy">pixiv.cat</label>
<br />
<input type="submit" value="Apply" />
</form>
<br />
<form action="/settings/image_server" method="post">
<label for="image-proxy">Custom image proxy server</label>
<input type="text" name="image-proxy" id="image-proxy" placeholder="Paste the address here..."
autocomplete="off" />
<input type="submit" value="Apply" />
</form>
</div>
</div>