You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.4 KiB
41 lines
1.4 KiB
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>运动会报名系统</title>
|
|
<link rel="stylesheet" href="./assets/css/style.css">
|
|
</head>
|
|
<body class="app-body">
|
|
<div class="app-layout">
|
|
<header class="topbar">
|
|
<div>
|
|
<p class="topbar-tag">Sports Meet Workspace</p>
|
|
<h1>运动会报名系统</h1>
|
|
</div>
|
|
<div class="topbar-user">
|
|
<span id="currentUserName">加载中...</span>
|
|
<button type="button" class="ghost-btn small" id="logoutBtn">退出登录</button>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="main-layout">
|
|
<aside class="sidebar" id="sidebarNav"></aside>
|
|
|
|
<section class="content-area">
|
|
<div class="content-header">
|
|
<div>
|
|
<h2 id="sectionTitle">系统首页</h2>
|
|
<p id="sectionDesc">欢迎进入运动会报名系统。</p>
|
|
</div>
|
|
<div class="content-tabs hidden" id="subTabs"></div>
|
|
</div>
|
|
<section id="mainView" class="content-card"></section>
|
|
</section>
|
|
</main>
|
|
</div>
|
|
|
|
<script src="./assets/js/common.js"></script>
|
|
<script src="./assets/js/app-main.js"></script>
|
|
</body>
|
|
</html>
|
|
|