feat: add software download center
This commit is contained in:
+51
@@ -0,0 +1,51 @@
|
||||
<!doctype html>
|
||||
<html lang="zh-CN">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="robots" content="noindex" />
|
||||
<meta name="theme-color" content="#edf5ff" />
|
||||
<title>sumi.work - 玩家登录</title>
|
||||
<link rel="stylesheet" href="assets/css/software.css?v=20260608-2" />
|
||||
</head>
|
||||
<body>
|
||||
<header class="soft-topbar">
|
||||
<div class="soft-topbar-inner login-topbar-inner">
|
||||
<a class="soft-brand" href="software.html" aria-label="返回软件下载">
|
||||
<img src="assets/icons/software.svg" alt="" aria-hidden="true" />
|
||||
<span>sumi.work 软件中心</span>
|
||||
</a>
|
||||
<nav class="soft-nav" aria-label="登录页导航">
|
||||
<a href="index.html">首页</a>
|
||||
<a href="software.html">软件下载</a>
|
||||
<a class="is-active" href="login.html">玩家登录</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="login-main">
|
||||
<section class="login-panel" aria-labelledby="login-title">
|
||||
<div>
|
||||
<p class="hero-kicker">Player Access</p>
|
||||
<h1 id="login-title">玩家登录</h1>
|
||||
<p class="login-copy">登录后即可下载软件中心里的安装包。</p>
|
||||
</div>
|
||||
<form class="login-form" id="login-form">
|
||||
<input type="hidden" name="next" id="next-url" />
|
||||
<div class="field">
|
||||
<label for="username">账号</label>
|
||||
<input id="username" name="username" autocomplete="username" required />
|
||||
</div>
|
||||
<div class="field">
|
||||
<label for="password">密码</label>
|
||||
<input id="password" name="password" type="password" autocomplete="current-password" required />
|
||||
</div>
|
||||
<button class="primary-action" type="submit">登录</button>
|
||||
<p class="status-message" id="login-status" aria-live="polite"></p>
|
||||
</form>
|
||||
</section>
|
||||
</main>
|
||||
|
||||
<script src="assets/js/login.js?v=20260608-1"></script>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user