webserver-framework/files/home.html

30 lines
492 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>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>