mirror of
https://gitee.com/bookshelfplus/bookshelfplus
synced 2025-10-17 21:16:41 +08:00
20 lines
591 B
HTML
20 lines
591 B
HTML
<!DOCTYPE html>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<%- include("../component/header.html"); %>
|
|
<%- include("../component/header-user.html"); %>
|
|
</head>
|
|
<body>
|
|
<%- include("../component/navbar.html"); %>
|
|
<main class="main">
|
|
<h1><%= headSubTextArr[page] || page %></h1>
|
|
<div id="container">
|
|
<div>
|
|
第三方账号绑定:
|
|
<%- include("../../component/third-party-login-button.html"); %>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<%- include("../component/footer-user.html"); %>
|
|
</body>
|
|
</html> |