|
|
<%@ page language="java" pageEncoding="UTF-8"%>
|
|
|
<%@ taglib uri="/struts-tags" prefix="s"%>
|
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
|
|
|
<%
|
|
|
String path = request.getContextPath();
|
|
|
String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
|
|
|
%>
|
|
|
<!DOCTYPE html>
|
|
|
<html lang="en">
|
|
|
<head>
|
|
|
<meta charset="utf-8" />
|
|
|
<title>公共租赁住房租赁管理系统</title>
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
|
|
|
|
<!-- App favicon -->
|
|
|
<link rel="shortcut icon" href="<%=basePath %>static/assets/images/favicon.ico">
|
|
|
|
|
|
<!-- App css -->
|
|
|
<link href="<%=basePath %>static/assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
|
|
|
<link href="<%=basePath %>static/assets/css/icons.min.css" rel="stylesheet" type="text/css" />
|
|
|
<link href="<%=basePath %>static/assets/css/app.min.css" rel="stylesheet" type="text/css" />
|
|
|
|
|
|
</head>
|
|
|
|
|
|
<body class="authentication-bg" style="background:url(<%=basePath %>static/M.png) no-repeat left bottom;">
|
|
|
|
|
|
<div class="account-pages my-5">
|
|
|
<div class="container">
|
|
|
<div class="row justify-content-center">
|
|
|
<div class="col-xl-10">
|
|
|
<div class="card">
|
|
|
<div class="card-body p-0">
|
|
|
<div class="row">
|
|
|
<div class="col-md-6 p-5">
|
|
|
<div class="mx-auto mb-5">
|
|
|
<a href="<%=basePath %>">
|
|
|
<img src="<%=basePath %>static/assets/images/logo.png" alt="" height="24" />
|
|
|
<h3 class="d-inline align-middle ml-1 text-logo">注册</h3>
|
|
|
</a>
|
|
|
</div>
|
|
|
|
|
|
<h6 class="h5 mb-0 mt-4">Create account!</h6>
|
|
|
<p class="text-muted mt-1 mb-4">
|
|
|
在线创建账号,申请公租房
|
|
|
.</p>
|
|
|
|
|
|
<form action="<%=basePath %>system/reg.do" method="POST" class="authentication-form">
|
|
|
<div class="form-group">
|
|
|
<label class="form-control-label">账号</label>
|
|
|
<div class="input-group input-group-merge">
|
|
|
<div class="input-group-prepend">
|
|
|
<span class="input-group-text">
|
|
|
<i class="icon-dual" data-feather="mail"></i>
|
|
|
</span>
|
|
|
</div>
|
|
|
<input type="text" required class="form-control" name="username" id="email" placeholder="输入账号...">
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
<div class="form-group mt-4">
|
|
|
<label class="form-control-label">密码</label>
|
|
|
|
|
|
<div class="input-group input-group-merge">
|
|
|
<div class="input-group-prepend">
|
|
|
<span class="input-group-text">
|
|
|
<i class="icon-dual" data-feather="lock"></i>
|
|
|
</span>
|
|
|
</div>
|
|
|
<input type="password" required class="form-control" id="password" name="password"
|
|
|
placeholder="输入您的密码...">
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="form-group mt-4">
|
|
|
<label class="form-control-label">确认密码</label>
|
|
|
|
|
|
<div class="input-group input-group-merge">
|
|
|
<div class="input-group-prepend">
|
|
|
<span class="input-group-text">
|
|
|
<i class="icon-dual" data-feather="lock"></i>
|
|
|
</span>
|
|
|
</div>
|
|
|
<input type="password" required class="form-control" id="password2" name="password2"
|
|
|
placeholder="输入确认密码...">
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
|
|
|
<div class="form-group mb-0 text-center">
|
|
|
<button class="btn btn-primary btn-block" type="submit"> 提交注册信息
|
|
|
</button>
|
|
|
</div>
|
|
|
</form>
|
|
|
<div class="py-3 text-center"><span class="font-size-16 font-weight-bold">Or</span></div>
|
|
|
<div class="row">
|
|
|
<div class="col-6">
|
|
|
<a href="<%=basePath %>" class="btn btn-white"><i class='uil uil-google icon-google mr-2'></i>
|
|
|
平台首页</a>
|
|
|
</div>
|
|
|
<div class="col-6 text-right">
|
|
|
<a href="<%=basePath %>system/login.do" class="btn btn-white"><i class='uil uil-user mr-2 icon-fb'></i>
|
|
|
我要登录</a>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="col-lg-6 d-none d-md-inline-block">
|
|
|
<div class="auth-page-sidebar">
|
|
|
<div class="overlay"></div>
|
|
|
<div class="auth-user-testimonial">
|
|
|
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
</div>
|
|
|
|
|
|
</div> <!-- end card-body -->
|
|
|
</div>
|
|
|
<!-- end card -->
|
|
|
|
|
|
<div class="row mt-3">
|
|
|
<div class="col-12 text-center">
|
|
|
<p class="text-muted">Copyrights 2020 <a href="" class="text-primary font-weight-bold ml-1">公共住房租赁管理系统</a>
|
|
|
版权所有
|
|
|
</p>
|
|
|
</div> <!-- end col -->
|
|
|
</div>
|
|
|
<!-- end row -->
|
|
|
|
|
|
</div> <!-- end col -->
|
|
|
</div>
|
|
|
<!-- end row -->
|
|
|
</div>
|
|
|
<!-- end container -->
|
|
|
</div>
|
|
|
<!-- end page -->
|
|
|
|
|
|
<!-- Vendor js -->
|
|
|
<script src="<%=basePath %>static/assets/js/vendor.min.js"></script>
|
|
|
|
|
|
<!-- App js -->
|
|
|
<script src="<%=basePath %>static/assets/js/app.min.js"></script>
|
|
|
|
|
|
<link href="<%=basePath %>static/toastr-master/toastr.min.css" rel="stylesheet" type="text/css" />
|
|
|
<script src="<%=basePath %>static/toastr-master/toastr.min.js"></script>
|
|
|
<script>
|
|
|
<c:if test="${!empty state }">
|
|
|
toastr.${state}('${message}', '提示');
|
|
|
setTimeout(function(){
|
|
|
window.location.href = "<%=basePath%>${url}";
|
|
|
},1500)
|
|
|
</c:if>
|
|
|
</script>
|
|
|
</body>
|
|
|
</html>
|
|
|
|