mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-21 14:57:52 +00:00
21 lines
367 B
PHP
21 lines
367 B
PHP
<?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>
|