-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathwelcome.html
More file actions
72 lines (64 loc) · 1.8 KB
/
Copy pathwelcome.html
File metadata and controls
72 lines (64 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome login! | Mbilse Account</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
text-align: center;
padding: 2rem;
background: #f6f8fa;
}
.container {
max-width: 500px;
margin: 5rem auto;
padding: 1rem;
background: white;
border-radius: 10px;
box-shadow: 0 5px 15px rgba(0,0,0,0.075);
}
.success-icon {
color: #2ea44f;
font-size: 4rem;
margin-bottom: 1rem;
}
.redirect-timer {
margin: 1.5rem 0;
font-size: 0.9rem;
color: #586069;
}
.btn {
display: inline-block;
padding: 10px 20px;
background: #2ea44f;
color: white !important;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
transition: background 0.2s;
}
.btn:hover {
background: #22863a;
}
</style>
</head>
<body>
<div class="container">
<!-- 成功图标 -->
<div class="success-icon">✓</div>
<h1>Welcome!</h1>
<p>欢迎您在Mbilse Website上登录到您的Mbilse Account帐户,您现在就可以通过Mbilse Auth来登录到您所运营的程序了!</p>
<p>状况:您正在使用Github登录到Mbilse帐户</p>
<img width="40" height="40" src="https://github.com/favicon.ico"></img>-><img width="40" height="40" src="https://mbilse.github.io/favicon.ico"></img>
<!-- 操作按钮 -->
<div class="actions">
<a href="/" class="btn">Go to Dashboard</a>
<p style="margin-top: 1rem;">
<a href="/" style="color: #0366d6;">Back to Home</a>
</p>
</div>
</div>
</body>
</html>