login.jsp 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  2. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  3. <%
  4. String path = request.getContextPath();
  5. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort() + path+"/";
  6. request.setAttribute("contextPath", basePath);
  7. %>
  8. <!doctype html>
  9. <html>
  10. <head>
  11. <meta charset="utf-8">
  12. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  13. <title>东旭营销系统后台 1.0 - 登录</title>
  14. <meta name="keywords" content="全员营销系统后台 1.0 ">
  15. <meta name="description" content="全员营销系统后台 1.0 ">
  16. <base href="${contextPath}">
  17. <link rel="shortcut icon" href="favicon.ico">
  18. <link href="res/css/bootstrap.min.css" rel="stylesheet">
  19. <link href="res/css/font-awesome.css" rel="stylesheet">
  20. <link href="res/css/animate.css" rel="stylesheet">
  21. <link href="res/css/style.css" rel="stylesheet">
  22. <!--[if lt IE 9]>
  23. <meta http-equiv="refresh" content="0;ie.html" />
  24. <![endif]-->
  25. <script>if(window.top !== window.self){ window.top.location = window.location;}</script>
  26. </head>
  27. <body class="gray-bg">
  28. <div class="middle-box text-center loginscreen animated fadeInDown">
  29. <div>
  30. <div>
  31. <h1 class="logo-name"><img alt="东旭营销系统平台" class="img-circle" src="res/img/logo.jpg" /></h1>
  32. </div>
  33. <h2>欢迎登录东旭营销系统平台</h2>
  34. <form class="m-t" role="form" action="mgr/login.cs" method="post">
  35. <div class="form-group">
  36. <input type="text" class="form-control" name="account" placeholder="用户名" required="">
  37. </div>
  38. <div class="form-group">
  39. <input type="password" class="form-control" name="pwd" placeholder="密码" required="">
  40. </div>
  41. <button type="submit" class="btn btn-primary block full-width m-b">登 录</button>
  42. <!-- <p class="text-muted text-center"> <a href="login.html#"><small>忘记密码了?</small></a> | <a href="register.html">注册一个新账号</a> -->
  43. </p>
  44. </form>
  45. </div>
  46. </div>
  47. <!-- 全局js -->
  48. <script src="res/js/jquery.min.js"></script>
  49. <script src="res/js/bootstrap.min.js"></script>
  50. <!--统计代码,可删除-->
  51. </body>
  52. </html>