home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
61.19.244.139
/
61.19.244.139.zip
/
61.19.244.139
/
2015-03-02
/
views
/
login.jsp
< prev
next >
Wrap
Text File
|
2015-03-02
|
5KB
|
98 lines
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page language="java" import="javax.servlet.jsp.PageContext" %>
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Login</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Login Page">
<meta name="author" content="Preecha Artkaew">
<!-- styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/jquery-ui-1.8.16.custom.css" rel="stylesheet">
<link href="css/jquery.jqplot.css" rel="stylesheet">
<link href="css/prettify.css" rel="stylesheet">
<link href="css/elfinder.min.css" rel="stylesheet">
<link href="css/elfinder.theme.css" rel="stylesheet">
<link href="css/fullcalendar.css" rel="stylesheet">
<link
href="js/plupupload/jquery.plupload.queue/css/jquery.plupload.queue.css"
rel="stylesheet">
<link href="css/styles.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/icons-sprite.css" rel="stylesheet">
<link id="themes" href="css/theme-chayam.css" rel="stylesheet">
<link rel="shortcut icon" href="ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144"
href="ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114"
href="ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72"
href="ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed"
href="ico/apple-touch-icon-57-precomposed.png">
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container-fluid">
<div class="branding">
<div class="logo">
<a href="index.html"><img src="img/logo.png" width="168"
height="40" alt="Logo"></a>
</div>
</div>
<ul class="nav pull-right">
<li></li>
</ul>
</div>
</div>
</div>
<form id="form" action="<c:url value='/login.do'/>" method="POST">
<div class="login-container">
<div class="well-login">
<c:if test="${not empty param.login_error}">
<div>ชื่อผู้ใช้หรือรหัสผ่านไม่ถูกต้อง กรุณาลองใหม่อีกครั้ง <c:out value="${SPRING_SECURITY_LAST_EXCEPTION.message}"/></div>
</c:if>
<c:if test="${not empty param.out}">
<div>You've logged out successfully.</div>
</c:if>
<c:if test="${not empty param.time}">
<div>You've been logged out due to inactivity.</div>
</c:if>
<div class="control-group">
<div class="controls">
<div>
<input type="text" name="username" id="username" placeholder="Username"
class="login-input user-name">
</div>
</div>
</div>
<div class="control-group">
<div class="controls">
<div>
<input type="password" name="password" id="password" placeholder="Password"
class="login-input user-pass">
</div>
</div>
</div>
<div class="clearfix">
<button class="btn btn-inverse login-btn" type="submit">Login</button>
</div>
<div class="remember-me">
</div>
</div>
</div></form>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script src="http://demo.linuxclub.net/bui/login.js"></script>
</body>
</html>