21 lines
523 B
Plaintext
21 lines
523 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>MFA Setup</title>
|
|
</head>
|
|
<body>
|
|
<h1>MFA Setup</h1>
|
|
|
|
<img src="<%= qrCodeImage %>" alt="QR Code">
|
|
|
|
<form action="/mfa-setup" method="post">
|
|
<label for="verificationCode">Enter Verification Code:</label>
|
|
<input type="text" id="verificationCode" name="verificationCode" required>
|
|
|
|
<button type="submit">Verify and Enable MFA</button>
|
|
</form>
|
|
</body>
|
|
</html>
|