| Server IP : 172.64.80.1 / Your IP : 172.69.214.9 Web Server : Apache System : Linux mail.federalpolyede.edu.ng 5.10.0-32-amd64 #1 SMP Debian 5.10.223-1 (2024-08-10) x86_64 User : federalpolyede.edu.ng_idh35skikv ( 10000) PHP Version : 7.4.33 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/federalpolyede.edu.ng/phd_code/securitymodel/templates/ |
Upload File : |
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>{% block title %}{% endblock %}</title>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.css') }}"/>
<link rel="stylesheet" href="{{ url_for('static', filename='css/w3.css') }}"/>
<link rel="stylesheet" href="{{ url_for('static', filename='css/font-awesome.css') }}"/>
<script src="{{ url_for('static', filename='js/jquery-1.11.1.js') }}"></script>
<script src="{{ url_for('static', filename='js/bootstrap.js') }}"></script>
<style>
a, a:hover, a:focus, a:active{
text-decoration: none;
}
.form-control, p.text-center{
margin-bottom: 2rem;
}.white-text{color: #fff!important;}
.loading{
display: flex;
justify-content: center;
align-items: center;
position: fixed;
z-index: 10000;
min-height: 100vh; width: 100%;
background: rgba(50,50,50,.7);
}
</style>
{% block style %}{% endblock %}
</head>
<body>
<div class="loading">
<span class="fa-stack fa-lg tada animated infinite" style="position: absolute" title="Loading...">
<i class="fa fa-circle fa-stack-2x text-primary"></i>
<i class="fa fa-lock fa-stack-1x fa-inverse"></i>
</span>
<i class="fa fa-spinner fa-pulse fa-4x white-text"></i>
</div>
{% block content %}{% endblock %}
{% block script %}{% endblock %}
<script>
var _seePass = $('#seePass'), _pass = $('#pass');
_seePass.on('click', function () {
$(this).toggleClass('fa-eye-slash').toggleClass('fa-eye');
if($(this).hasClass('fa-eye')) _pass.attr('type', 'text');
else _pass.attr('type', 'password');
});
$(window).ready(function(){
$(".loading").fadeOut("slow")
});
$(document).ready(function () {
var dd = new Date();
$('#copyYear').text(dd.getFullYear());
})
</script>
</body>
</html>