webserver-framework/files/2fa.html

28 lines
466 B
HTML
Raw Normal View History

2022-11-11 20:37:37 +01:00
<!--
2022-11-12 21:19:27 +01:00
Placeholder file
2022-11-11 20:37:37 +01:00
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>2 FA</title>
</head>
<body>
<div class="main-container">
<h2>Verification</h2>
<form action="/api/login/verify" method="post">
<label for="code">Code: </label>
<input id="code" name="code" type="password" required><br />
<input type="submit" value="Verify">
</form>
</div>
</body>
</html>