26 lines
791 B
HTML
26 lines
791 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Coimbra VPN</title>
|
|
</head>
|
|
<body>
|
|
<h1>Two-Factor Auth</h1>
|
|
<p>Enter your UNIX credentials and TOTP code</p>
|
|
|
|
<form action="/dologin" method="POST">
|
|
|
|
<label for="username">Username</label>
|
|
<input type="text" id="username" name="httpd_username" placeholder="username">
|
|
|
|
<br>
|
|
|
|
<label for="password">UNIX Password (password + 6 digit TOTP)</label>
|
|
<input type="password" id="password" name="httpd_password" placeholder="password + TOTP" required>
|
|
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
</body>
|
|
</html>
|