81 lines
2.9 KiB
PHP
81 lines
2.9 KiB
PHP
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
<head>
|
||
|
<title>Login</title>
|
||
|
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
|
||
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<meta name="description" content="">
|
||
|
<meta name="author" content="">
|
||
|
<link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>asset/css/login.css" />
|
||
|
<link href="<?php echo base_url(); ?>asset/bootstrap/css/bootstrap.css" rel="stylesheet">
|
||
|
<style type="text/css">
|
||
|
body {
|
||
|
padding-top: 40px;
|
||
|
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,
|
||
|
.form-signin .checkbox {
|
||
|
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>
|
||
|
<link href="<?php echo base_url(); ?>asset/bootstrap/css/bootstrap-responsive.css" rel="stylesheet">
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="container" style="margin-top:100px;">
|
||
|
|
||
|
<form class="form-signin" action="<?php echo base_url(); ?>user/login_auth" method="post">
|
||
|
|
||
|
<!--<form class="form-signin" action="http://192.168.129.51:8080/everseiko/index.php/login/auth/format/json" method="post">-->
|
||
|
<!--<form class="form-signin" action="http://10.10.10.7/everseiko/index.php/login/auth/format/json" method="post">-->
|
||
|
<?php if(isset($login_info)) {
|
||
|
echo'<div class="alert alert-error">';
|
||
|
echo $login_info ;
|
||
|
echo'</div>';
|
||
|
}
|
||
|
?>
|
||
|
<h5><i class="icon-flag"></i> Login</h5>
|
||
|
<input type="text" class="input-block-level" placeholder="Username" name="username" required>
|
||
|
<input type="password" class="input-block-level" placeholder="Password" name="password" required>
|
||
|
<!--<input type="text" class="input-block-level" placeholder="Kota" name="kota" required>-->
|
||
|
<button class="btn btn-primary" type="submit">Sign in</button>
|
||
|
</form>
|
||
|
|
||
|
</div>
|
||
|
<script src="<?php echo base_url(); ?>asset/bootstrap/js/jquery.js"></script>
|
||
|
<script>
|
||
|
$(document).ready(function(){
|
||
|
setTimeout(function(){
|
||
|
$("div.alert").fadeOut("slow", function () {
|
||
|
$("div.alert").remove();
|
||
|
});
|
||
|
|
||
|
}, 2000);
|
||
|
});
|
||
|
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|