-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompletion.html
82 lines (75 loc) · 2.02 KB
/
completion.html
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
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>Backup Complete</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
margin: 0;
padding: 0;
min-height: 100vh;
background: #f9f9f9;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 100%;
max-width: 480px;
padding: 20px;
}
.completion-card {
background: white;
border-radius: 12px;
padding: 32px;
text-align: center;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.success-icon {
width: 64px;
height: 64px;
margin: 0 auto 24px;
background: #4CAF50;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
}
.success-icon svg {
width: 36px;
height: 36px;
fill: white;
}
h1 {
color: #030303;
font-size: 24px;
font-weight: 500;
margin: 0 0 16px;
}
p {
color: #606060;
margin: 8px 0;
font-size: 16px;
line-height: 1.5;
}
.sub-text {
font-size: 14px;
opacity: 0.8;
}
</style>
</head>
<body>
<div class="container">
<div class="completion-card">
<div class="success-icon">
<svg viewBox="0 0 24 24">
<path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/>
</svg>
</div>
<h1>Migration Complete!</h1>
<p>All selected data has been successfully migrated to your new account.</p>
<p class="sub-text">You can safely close this tab now.</p>
</div>
</div>
</body>
</html>