44 lines
No EOL
1.6 KiB
HTML
44 lines
No EOL
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>登录 - CaddyDash</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
|
|
<link rel="stylesheet" href="css/style.css">
|
|
</head>
|
|
<body class="login-page-body">
|
|
|
|
<div class="login-container">
|
|
<header class="login-header">
|
|
<i class="fa-solid fa-rocket"></i>
|
|
<h1>CaddyDash</h1>
|
|
<p>请输入您的凭证以继续</p>
|
|
</header>
|
|
|
|
<form id="login-form">
|
|
<div class="form-group">
|
|
<label for="username">用户名</label>
|
|
<input type="text" id="username" name="username" autocomplete="username">
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="password">密码</label>
|
|
<input type="password" id="password" name="password" autocomplete="current-password">
|
|
</div>
|
|
|
|
<button type="submit" class="btn btn-primary btn-login">
|
|
<span>登录</span>
|
|
<i class="fa-solid fa-arrow-right"></i>
|
|
</button>
|
|
</form>
|
|
</div>
|
|
|
|
<!-- 右上角消息通知容器 -->
|
|
<div id="toast-container" class="toast-container"></div>
|
|
|
|
<script src="js/login.js"></script>
|
|
</body>
|
|
</html> |