1
0
mirror of https://gitee.com/bookshelfplus/bookshelfplus synced 2025-09-15 21:01:40 +08:00
Code Issues Projects Releases Wiki Activity GitHub Gitee

管理员和用户后台框架完成;用户登录功能完成

This commit is contained in:
2022-04-02 14:49:48 +08:00
parent 7bf98f6ae0
commit 3efc2c730b
8 changed files with 116 additions and 33 deletions

View File

@@ -0,0 +1,19 @@
<!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><%= title %></h1>
<div id="container">
<div>
<%= typeof title !=='undefined' ? page : "出错啦"; %>
</div>
</div>
</main>
<%- include("../component/footer-user.html"); %>
</body>
</html>