| Server IP : 93.86.61.54 / Your IP : 216.73.216.206 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/rasin_ftp/news_portal/admin/ |
Upload File : |
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href='https://fonts.googleapis.com/css?family=Roboto:400,300' rel='stylesheet' type='text/css'>
<title>Admin Login</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
<link href="css/style.css" rel="stylesheet" />
<style>
html, body {
height: 100%;
background:#262c31;
}
.main {
height: 100%;
width: 100%;
display: table;
}
.wrapper {
display: table-cell;
height: 100%;
vertical-align: middle;
}
#login {
width: 30%;
}
@media all and (max-width:800px) {
#login {
width: 90%;
}
}
</style>
</head>
<body>
<div class="main">
<div class="wrapper">
<div id="login" class="row" style="margin: auto">
<div class="large-12 columns text-center">
<?php
@ob_start ();
@session_start ();
if (isset ( $_SESSION ['msg'] )) {
echo $_SESSION ['msg'];
unset ( $_SESSION ['msg'] );
}
?>
<form method="post" action="login_check.php">
<input id="Text1" type="text" placeholder="Email" class="border-radius-top" name="login_id"/>
<input id="Text2" type="password" placeholder="Password" class="no-radius" name="password"/>
<input type="submit" value="Login" class="button small border-radius-bottom coral-bg" style="width: 100%">
</form>
</div>
</div>
</div>
</div>
</body>
<script src="js/vendor/jquery.js"></script>
<script src="js/foundation.min.js"></script>
</html>