rss-bridge/templates/token.html.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
367 B
PHP
Raw Normal View History

2024-01-25 20:20:02 +03:00
<?php
/**
* This template renders a form for user to enter a auth token if it's enabled
*/
?>
<h1>
Authentication with token required
</h1>
<p>
<?= e($message) ?>
</p>
<form action="" method="get">
<label for="token">Token:</label>
<input type="password" name="token" id="token" placeholder="token">
<input type="submit" value="OK">
</form>