home *** CD-ROM | disk | FTP | other *** search
/ 61.19.244.139 / 61.19.244.139.zip / 61.19.244.139 / 2015-03-03 / views / login.jsp < prev    next >
Text File  |  2015-03-03  |  5KB  |  98 lines

  1. <%@ page language="java" contentType="text/html; charset=UTF-8"
  2.          pageEncoding="UTF-8"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ page language="java" import="javax.servlet.jsp.PageContext" %>
  5. <!DOCTYPE HTML>
  6. <html lang="en">
  7.     <head>
  8.         <meta charset="utf-8">
  9.         <title>Login</title>
  10.         <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11.         <meta name="description" content="Login Page">
  12.         <meta name="author" content="Preecha Artkaew">
  13.         <!-- styles -->
  14.         <link href="css/bootstrap.css" rel="stylesheet">
  15.         <link href="css/jquery-ui-1.8.16.custom.css" rel="stylesheet">
  16.         <link href="css/jquery.jqplot.css" rel="stylesheet">
  17.         <link href="css/prettify.css" rel="stylesheet">
  18.         <link href="css/elfinder.min.css" rel="stylesheet">
  19.         <link href="css/elfinder.theme.css" rel="stylesheet">
  20.         <link href="css/fullcalendar.css" rel="stylesheet">
  21.         <link
  22.             href="js/plupupload/jquery.plupload.queue/css/jquery.plupload.queue.css"
  23.             rel="stylesheet">
  24.         <link href="css/styles.css" rel="stylesheet">
  25.         <link href="css/bootstrap-responsive.css" rel="stylesheet">
  26.         <link href="css/icons-sprite.css" rel="stylesheet">
  27.         <link id="themes" href="css/theme-chayam.css" rel="stylesheet">     
  28.         <link rel="shortcut icon" href="ico/favicon.ico">
  29.         <link rel="apple-touch-icon-precomposed" sizes="144x144"
  30.               href="ico/apple-touch-icon-144-precomposed.png">
  31.         <link rel="apple-touch-icon-precomposed" sizes="114x114"
  32.               href="ico/apple-touch-icon-114-precomposed.png">
  33.         <link rel="apple-touch-icon-precomposed" sizes="72x72"
  34.               href="ico/apple-touch-icon-72-precomposed.png">
  35.         <link rel="apple-touch-icon-precomposed"
  36.               href="ico/apple-touch-icon-57-precomposed.png">
  37.     </head>
  38.     <body>
  39.         <div class="navbar navbar-fixed-top">
  40.             <div class="navbar-inner">
  41.                 <div class="container-fluid">
  42.                     <div class="branding">
  43.                         <div class="logo">
  44.                             <a href="index.html"><img src="img/logo.png" width="168"
  45.                                                       height="40" alt="Logo"></a>
  46.                         </div>
  47.                     </div>
  48.                     <ul class="nav pull-right">
  49.                         <li></li>
  50.                     </ul>
  51.                 </div>
  52.             </div>
  53.         </div>
  54.         <form id="form" action="<c:url value='/login.do'/>" method="POST">
  55.             <div class="login-container">
  56.                 <div class="well-login">
  57.                     <c:if test="${not empty param.login_error}">
  58.                         <div>α╕èα╕╖α╣êα╕¡α╕£α╕╣α╣ëα╣âα╕èα╣ëα╕½α╕úα╕╖α╕¡α╕úα╕½α╕▒α╕¬α╕£α╣êα╕▓α╕Öα╣äα╕íα╣êα╕ûα╕╣α╕üα╕òα╣ëα╕¡α╕ç α╕üα╕úα╕╕α╕ôα╕▓α╕Ñα╕¡α╕çα╣âα╕½α╕íα╣êα╕¡α╕╡α╕üα╕äα╕úα╕▒α╣ëα╕ç <c:out value="${SPRING_SECURITY_LAST_EXCEPTION.message}"/></div>
  59.                     </c:if>
  60.                     <c:if test="${not empty param.out}">
  61.                         <div>You've logged out successfully.</div>
  62.                     </c:if>
  63.                     <c:if test="${not empty param.time}">
  64.                         <div>You've been logged out due to inactivity.</div>
  65.                     </c:if>
  66.  
  67.  
  68.                     <div class="control-group">
  69.                         <div class="controls">
  70.                             <div>
  71.                                 <input type="text" name="username" id="username" placeholder="Username"
  72.                                        class="login-input user-name">
  73.                             </div>
  74.                         </div>
  75.                     </div>
  76.                     <div class="control-group">
  77.                         <div class="controls">
  78.                             <div>
  79.                                 <input type="password" name="password" id="password" placeholder="Password"
  80.                                        class="login-input user-pass">
  81.                             </div>
  82.                         </div>
  83.                     </div>
  84.                     <div class="clearfix">
  85.                         <button class="btn btn-inverse login-btn" type="submit">Login</button>
  86.                     </div>
  87.                     <div class="remember-me">
  88.  
  89.                     </div>
  90.                 </div>
  91.             </div></form>
  92.  
  93.         <!--[if lt IE 9]>
  94.         <script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
  95. <![endif]-->
  96.         <script src="http://demo.linuxclub.net/bui/login.js"></script>
  97.     </body>
  98. </html>