mirror of
https://github.com/Telecominfraproject/wlan-cloud-ucentralsec.git
synced 2025-10-29 09:52:29 +00:00
38 lines
950 B
HTML
38 lines
950 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Password Policy</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="/wwwassets/sub_common.css">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="logo-grid">
|
|
<div></div>
|
|
<div><img src="/wwwassets/sub_logo.png" alt="OpenWifi" class="logo-img"></div>
|
|
<div></div>
|
|
</div>
|
|
|
|
<div class="info-card">
|
|
<h2 class="info-title">Password Policy</h2>
|
|
<ul class="info-list">
|
|
<li>Must be at least 8 characters long</li>
|
|
<li>Must contain 1 uppercase letter</li>
|
|
<li>Must contain 1 lowercase letter</li>
|
|
<li>Must contain 1 digit</li>
|
|
<li>Must contain 1 special character</li>
|
|
</ul>
|
|
<div id="footer" />
|
|
</div>
|
|
|
|
|
|
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js'></script>
|
|
<script>
|
|
$(function(){
|
|
$("#footer").load("./sub_footer.html");
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|