70 lines
3.1 KiB
HTML
70 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN" xmlns:th="http://www.thymeleaf.org" xmlns:sec="http://www.thymeleaf.org/thymeleaf-extras-springsecurity3">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<title>用户中心</title>
|
|
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
|
|
<link rel="stylesheet" th:href="@{${uiPath} + ${appName} + '/css/bootstrap.min.css'}">
|
|
<link rel="stylesheet" href="//at.alicdn.com/t/font_ay4w4j5c2tke29.css">
|
|
<link rel="stylesheet" th:href="@{${uiPath} + ${appName} + '/css/style.css'}">
|
|
</head>
|
|
<body class="login-page">
|
|
<div class="login-box">
|
|
<div class="login-logo">
|
|
<a href="#"><b>Zheng</b>UC</a>
|
|
</div>
|
|
|
|
<div class="row login-box-body">
|
|
<div class="row" style="margin-bottom: 20px;">
|
|
<div class="col-xs-6 logo-tip">
|
|
<i class="iconfont icon-icon053"></i> <span>找回密码</span>
|
|
</div>
|
|
<div class="col-xs-6" style="text-align: right">
|
|
<a href="signup">注册</a>
|
|
</div>
|
|
</div>
|
|
<form>
|
|
<div class="form-group has-feedback">
|
|
<input type="email" class="form-control" placeholder="邮箱">
|
|
<span class="glyphicon glyphicon-envelope form-control-feedback"></span>
|
|
</div>
|
|
<div class="form-group has-feedback">
|
|
<div class="row">
|
|
<div class="col-xs-6">
|
|
<input type="password" class="form-control" placeholder="验证码">
|
|
<span class="glyphicon glyphicon-lock form-control-feedback" style="right: 15px;"></span>
|
|
</div>
|
|
<div class="col-xs-6" style="text-align: right">
|
|
<img th:src="@{${uiPath} + ${appName} + '/img/captcha.png'}" alt="" style="border: 1px solid #ccc; height: 34px;">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<!-- /.col -->
|
|
<div class="col-xs-12">
|
|
<button type="submit" class="btn btn-primary btn-block btn-flat">确定</button>
|
|
</div>
|
|
<!-- /.col -->
|
|
</div>
|
|
</form>
|
|
|
|
<div class="social-auth-links">
|
|
<p>- OR -</p>
|
|
<a style="margin-left:0" href="#"><i class="iconfont icon-qq"></i></a>
|
|
<a href="#"><i class="iconfont icon-weixin"></i></a>
|
|
<a href="#"><i class="iconfont icon-weibo"></i></a>
|
|
<a href="#"><i class="iconfont icon-github1"></i></a>
|
|
</div>
|
|
<!-- /.social-auth-links -->
|
|
|
|
</div>
|
|
</div>
|
|
<!-- /.login-box -->
|
|
|
|
<script>var BASE_PATH = '[[${#httpServletRequest.getContextPath()}]]';</script>
|
|
<script>var BACK_URL = '[[${#httpServletRequest.getParameter("backurl")}]]';</script>
|
|
<script src="js/jquery.min.js" th:src="@{${uiPath} + ${appName} + '/js/jquery.min.js'}"></script>
|
|
<script src="js/bootstrap.min.js" th:src="@{${uiPath} + ${appName} + '/js/bootstrap.min.js'}"></script>
|
|
</body>
|
|
</html> |