fusionpbx/core/authentication/resources/views/totp_secret.htm

35 lines
1.4 KiB
HTML
Raw Normal View History

<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml' xml:lang='en' lang='en'>
<head>
<meta charset='utf-8' />
<meta http-equiv='Content-Type' content='text/html; charset=UTF-8' />
<meta http-equiv='X-UA-Compatible' content='IE=edge' />
<meta name='viewport' content='width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no' />
<link rel='stylesheet' type='text/css' href='{$project_path}/themes/default/css.php' />
<link rel='icon' href='{$favicon}'>
<title>{$login_title}</title>
</head>
<body>
2024-06-18 17:32:19 +02:00
{if !empty($background_video)}
<video id="background-video" autoplay muted2 poster="" onloadstart="this.playbackRate = 1;">
<source src="{$background_video}" type="video/mp4">
</video>
{/if}
<div id='page' align='center'>
<div id='default_login' style='max-width: 400px;'>
<a href='{$project_path}/'><img id='login_logo' style='width: {$login_logo_width}; height: {$login_logo_height};' src='{$login_logo_source}' /></a><br />
<form method='post' name='frm' action=''>
<div id='totp_qr' class='login_text'>
{$totp_description}<br /><br />
<img src="data:image/jpeg;base64,{$totp_image}" style='margin-top: 0px; padding: 5px; background: white; max-width: 100%;' /><br /><br />
{$totp_secret}<br />
</div>
<div>
<input type='submit' name='' class='btn' style='width: 100px; margin-top: 15px;' value='{$button_next}' />
</div>
</form>
</div>
</div>
</body>
2024-06-18 17:32:19 +02:00
</html>