webserver-framework/files/home.html
2022-11-12 22:19:27 +02:00

30 lines
492 B
HTML

<!--
Placeholder file
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Home</title>
</head>
<body>
<div class="main-container">
<h2>Add 2FA</h2>
<img src="/api/user/2fa" />
<form action="/api/user/2fa/verify" method="post">
<label for="code">2FA code</label>
<input type="text" id="code" name="code">
<input type="submit" value="Submit">
</form>
</div>
</body>
</html>