mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralsec.git
synced 2025-10-29 18:02:29 +00:00
39 lines
860 B
HTML
39 lines
860 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Email Verification Error</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/wwwassets/common.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="logo-grid">
|
|
<div></div>
|
|
<div><img src="/wwwassets/logo.png" alt="OpenWifi" class="logo-img"></div>
|
|
<div></div>
|
|
</div>
|
|
|
|
<div class="info-card">
|
|
<h2 class="info-title">Email Verification Failed...</h2>
|
|
<div class="flex-box">
|
|
<h3>ID: </h3>
|
|
<b>${UUID}</b>
|
|
</div>
|
|
<div class="flex-box">
|
|
<h3>Error: </h3>
|
|
<b>${ERROR_TEXT}</b>
|
|
</div>
|
|
<div id="footer" />
|
|
</div>
|
|
|
|
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
|
<script>
|
|
$(function(){
|
|
$("#footer").load("./footer.html");
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|