1
0
mirror of https://github.com/RSS-Bridge/rss-bridge.git synced 2025-01-17 06:08:27 +01:00
php-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
407 B
PHP
Raw Normal View History

2024-01-25 18:20:02 +01: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" autocomplete="off">
2024-01-25 18:20:02 +01:00
<label for="token">Token:</label>
<input type="text" name="token" id="token" placeholder="token" value="<?= e($token) ?>">
2024-01-25 18:20:02 +01:00
<input type="submit" value="OK">
</form>