80 lines
2.7 KiB
Plaintext
80 lines
2.7 KiB
Plaintext
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
|
|
<%
|
|
String path = request.getContextPath();
|
|
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
|
%>
|
|
|
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<html>
|
|
<head>
|
|
<base href="<%=basePath%>">
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
|
|
|
|
<title>skic找回密码</title>
|
|
<!-- <link rel="stylesheet" type="text/css" href="css/normalize.css" /> -->
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/css/materialize.min.css">
|
|
<style type="text/css">
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
html {
|
|
display: table;
|
|
margin: auto;
|
|
}
|
|
body {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
color:#404d5b;
|
|
}
|
|
.margin {
|
|
margin: 0 !important;
|
|
}
|
|
.card-panel{ min-width:350px;}
|
|
</style>
|
|
<!--[if IE]>
|
|
<script src="http://apps.bdimg.com/libs/html5shiv/3.7/html5shiv.min.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
<body class="blue-grey">
|
|
<div id="login-page" class="row">
|
|
<div class="col s12 z-depth-6 card-panel">
|
|
<form class="login-form">
|
|
<div class="row">
|
|
<div class="input-field col s12 center">
|
|
<img src="http://w3lessons.info/logo.png" alt="" class="responsive-img valign profile-image-login">
|
|
<p class="center login-form-text">Welcome to skic</p>
|
|
</div>
|
|
</div>
|
|
<div class="row margin">
|
|
<div class="input-field col s12">
|
|
<i class="mdi-social-person-outline prefix"></i>
|
|
<input class="validate" id="email" type="email">
|
|
<label for="email" data-error="wrong" data-success="right" class="center-align">Email</label>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="input-field col s12">
|
|
<a href="forgot-password.html" class="btn waves-effect waves-light col s12">Reset my password</a>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="input-field col s6 m6 l6">
|
|
<p class="margin medium-small"><a href="register.jsp">Register Now!</a></p>
|
|
</div>
|
|
<div class="input-field col s6 m6 l6">
|
|
<p class="margin right-align medium-small"><a href="login.jsp">Login</a></p>
|
|
</div>
|
|
</div>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript" src="http://apps.bdimg.com/libs/jquery/1.11.1/jquery.min.js"></script>
|
|
|
|
<!--materialize js-->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.1/js/materialize.min.js"></script>
|
|
</body>
|
|
</html> |