blob: 7decfb53e96ea69314fb450319b111d995216fbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
require_once('util.php');
require_once('serviceDefinitions.php');
session_start();
$redirect = $_GET['redirect'];
$token = $_POST['token'];
if (isset($_POST['token']) && $_POST['token'] === Util\getSuperSecretToken()) {
$_SESSION['token'] = $_POST['token'];
header('Location: ' . $redirect);
exit;
}
?>
<!DOCTYPE html>
<html>
<head>
<title>Authenticate</title>
<link rel="stylesheet" type="text/css" href="styles.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div class="container">
<h1>Authenticate</h1>
<hr>
<p>Please enter the secret key to continue.</p>
<form action="authenticate.php?redirect=<?php echo $redirect ?>" method="POST">
Key: <input type="password" name="token">
<input type="submit">
</form>
</div>
</body>
|