首次完成数据库登录,注册验证。首次完成,migrate_manager.py迁移多个数据库

This commit is contained in:
Jay
2026-08-26 00:47:06 +08:00
commit 16fb5030cb
54 changed files with 1285 additions and 0 deletions
+63
View File
@@ -0,0 +1,63 @@
.login-card {
width: 100%;
max-width: 400px;
background: #ffffff;
border-radius: 12px;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
padding: 40px 32px;
}
.login-card h1 {
text-align: center;
font-size: 24px;
color: #333;
margin-bottom: 8px;
}
.login-card .subtitle {
text-align: center;
font-size: 14px;
color: #888;
margin-bottom: 28px;
}
.form-options {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 13px;
margin-bottom: 24px;
}
.form-options label {
display: flex;
align-items: center;
gap: 6px;
color: #555;
cursor: pointer;
}
.form-options a {
color: #667eea;
text-decoration: none;
}
.form-options a:hover {
text-decoration: underline;
}
.register-link {
text-align: center;
font-size: 13px;
color: #888;
margin-top: 24px;
}
.register-link a {
color: #667eea;
text-decoration: none;
}
.register-link a:hover {
text-decoration: underline;
}