|
|
@@ -0,0 +1,35 @@
|
|
|
+<!DOCTYPE html>
|
|
|
+<html xmlns="http://www.w3.org/1999/xhtml"
|
|
|
+ xmlns:th="http://www.thymeleaf.org"
|
|
|
+ xmlns:shiro="http://www.pollix.at/thymeleaf/shiro">
|
|
|
+
|
|
|
+<head th:replace="common::header(~{::title},~{::link})">
|
|
|
+<title>用户会员申请</title>
|
|
|
+<link th:href="${portalHost + '/vendors.css'}" rel="stylesheet">
|
|
|
+<link th:href="${portalHost + '/membership.css'}" rel="stylesheet">
|
|
|
+</head>
|
|
|
+
|
|
|
+<body>
|
|
|
+ <header>
|
|
|
+ <div th:replace="common::{topNav}">
|
|
|
+ <div class="container">
|
|
|
+ <div class="lt">欢迎进入科技认知计算交易平台!</div>
|
|
|
+ <div class="rt">
|
|
|
+ <a href="/user/login.html" class="login">登录</a> <a
|
|
|
+ href="/user/signIn.html">注册</a> <a href="#">导航</a> <a href="#">关于我们</a>
|
|
|
+ <a href="#">联系我们</a>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ </header>
|
|
|
+ <div></div>
|
|
|
+ <footer>
|
|
|
+ <div th:replace="common::copyright"></div>
|
|
|
+ </footer>
|
|
|
+ <div th:replace="common::footer(~{::script})">
|
|
|
+ <script type="text/javascript" th:src="${portalHost + '/vendors.js'}"></script>
|
|
|
+ <script type="text/javascript" th:src="${portalHost + '/membership.js'}"></script>
|
|
|
+ </div>
|
|
|
+</body>
|
|
|
+
|
|
|
+</html>
|