| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <!DOCTYPE HTML>
- <html xmlns:th="http://www.thymeleaf.org"
- xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
- layout:decorate="~{admin/common/common}">
- <head>
- <title>选择注册</title>
- <style>
- .reg-box {
- height: 280px;
- border: solid 1px #dadada;
- padding: 20px 40px;
- text-align: center;
- float: left;
- }
- .reg-box-title {
- font-size: 16px;
- border-bottom: solid 2px #dadada;
- margin-bottom: 30px;
- }
- .reg-box-info p {
- line-height: 2;
- margin-bottom: 20px;
- }
- </style>
- </head>
- <body layout:fragment="content">
- <article class="page-container">
- <div class="clearfix" style="width: 820px; margin: 50px auto;">
- <div class="reg-box" style="margin-right: 40px;">
- <p class="reg-box-title">个人用户注册</p>
- <div class="reg-box-info">
- <p style="font-size: 16px">平台为个人用户及区外企业<br/>提供活动报名服务</p>
- <p>如果您不隶属于公司,或是区外企业,<br/>请选择个人用户注册</p>
- </div>
- <a type="button" class="btn btn-primary radius"
- th:onclick="'javascript:register(\'个人注册\',\'/home/personal\',\'800\',\'500\');'">个人用户注册
- </a>
- </div>
- <div class="reg-box">
- <p class="reg-box-title">企业用户注册</p>
- <div class="reg-box-info">
- <p style="font-size: 16px">平台为高新区内的企业用户提供全方位服务</p>
- <p>如果您隶属于高新区内的公司,想使用平台为企业提供的业务功能,<br/>(例,存量用地、项目申报等功能)<br/>请选择企业用户注册</p>
- </div>
- <a type="button" class="btn btn-primary radius"
- th:onclick="'javascript:register(\'企业注册\',\'/home/toRegister\',\'800\',\'500\');'">企业用户注册
- </a>
- </div>
- </div>
- </article>
- <script th:inline="javascript">
- function register(title, url, w, h) {
- var index = layer_show(title, pagePath + url, w, h);
- console.log("选择页:"+index);
- //默认全屏
- layer.full(index);
- }
- function removeIframe() {
- parent.layer.closeAll();
- }
- </script>
- </body>
- </html>
|