| Server IP : 210.245.233.93 / Your IP : 216.73.216.226 Web Server : Apache/2.2.15 (CentOS) System : Linux webserver2.onesolution.com.hk 2.6.32-754.35.1.el6.x86_64 #1 SMP Sat Nov 7 12:42:14 UTC 2020 x86_64 User : apache ( 48) PHP Version : 5.3.3 Disable Function : exec, shell_exec, system, passthru, popen, proc_open, pcntl_exec MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/onesupportsys.onesolution.hk/ |
Upload File : |
<?php
require_once( __DIR__ . '/inc/configure.php');
$controller = new SigninController();
extract($controller->login());
?><!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php require(__DIR__ . '/inc/_head_meta.php'); ?>
<?php require(__DIR__ . '/inc/_head_css.php'); ?>
<style type="text/css">
body {
padding-top: 60px; /* 60px to make the container go all the way to the bottom of the topbar */
padding-bottom: 40px;
background-color: #f5f5f5;
}
.form-signin {
max-width: 300px;
padding: 19px 29px 29px;
margin: 0 auto 20px;
background-color: #fff;
border: 1px solid #e5e5e5;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.05);
-moz-box-shadow: 0 1px 2px rgba(0,0,0,.05);
box-shadow: 0 1px 2px rgba(0,0,0,.05);
}
.form-signin .form-signin-heading {
margin-bottom: 10px;
}
.form-signin input[type="text"],
.form-signin input[type="password"] {
font-size: 16px;
height: auto;
margin-bottom: 15px;
padding: 7px 9px;
}
</style>
<?php require(__DIR__ . '/inc/_head_script.php'); ?>
</head>
<body>
<div class="container">
<blockquote>
<p>
The Best Browsers:
<small><a href="http://www.google.com/chrome" target="_blank">Google Chrome</a></small>
<!-- <small><a href="http://mozilla.org/firefox/download/" target="_blank">Mozilla Firefox</a></small> -->
</p>
</blockquote>
<form method="post" class="form-signin">
<?php if (isset($message) && !empty($message)) { ?>
<div class="alert <?=htmlentities($message_css_class)?>">
<button type="button" class="close" data-dismiss="alert">×</button>
<h5 class="alert-heading"><?=h($message_heading)?></h5>
<p><?=h($message)?></p>
</div>
<?php } ?>
<h2 class="form-signin-heading"><img src="images/logo.jpg" alt="Logo" title="One Solution Limited" /></h2>
<div class="control-group">
<label class="control-label" for="name">User name</label>
<div class="controls">
<input type="text" id="name" name="name" value="<?=isset($name) ? $name : ''?>" class="input-block-level" placeholder="User name" />
</div>
</div>
<div class="control-group">
<label class="control-label" for="password">Password</label>
<div class="controls">
<input type="password" id="password" name="password" class="input-block-level" placeholder="Password" autocomplete="off" />
</div>
</div>
<div class="control-group">
<div class="controls">
<div class="text-right">
<button class="btn btn-large btn-primary" type="submit">Sign in</button>
</div>
</div>
</div>
</form>
</div> <!-- /container -->
</body>
</html>