-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
259 lines (258 loc) · 13 KB
/
Copy pathtest.html
File metadata and controls
259 lines (258 loc) · 13 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
<!DOCTYPE html>
<html class="dark" lang="en"><head>
<meta charset="utf-8"/>
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
<title>Englishpersonai Refined Login</title>
<script src="https://cdn.tailwindcss.com?plugins=forms,container-queries"></script>
<link href="https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Fredoka:wght@300;400;500;600;700&display=swap" rel="stylesheet"/>
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:wght,FILL@100..700,0..1&display=swap" rel="stylesheet"/>
<script id="tailwind-config">
tailwind.config = {
darkMode: "class",
theme: {
extend: {
colors: {
"primary": "#c025f4",
"accent-teal": "#2dd4bf",
"background-light": "#f8f5f8",
"background-dark": "#1e1022",
},
fontFamily: {
"display": ["Fredoka", "sans-serif"],
"body": ["Space Grotesk", "sans-serif"]
},
borderRadius: {
"DEFAULT": "0.25rem",
"lg": "0.5rem",
"xl": "0.75rem",
"2xl": "1rem",
"3xl": "1.5rem",
"full": "9999px"
},
},
},
}
</script>
<style type="text/tailwindcss">
:root {
--primary-glow: rgba(192, 37, 244, 0.4);
--accent-glow: rgba(45, 212, 191, 0.4);
}
body {
font-family: 'Space Grotesk', sans-serif;
background: radial-gradient(circle at top, #3b0a45 0%, #1e1022 100%);
overflow-x: hidden;
min-height: 100dvh;
}
.app-title {
font-family: 'Fredoka', sans-serif;
}
.glass {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(12px);
-webkit-backdrop-filter: blur(12px);
border: 1px solid rgba(192, 37, 244, 0.2);
}
.portal-glow {
box-shadow: 0 0 40px var(--primary-glow);
}
.login-btn-glow {
box-shadow: 0 0 20px rgba(192, 37, 244, 0.6), 0 0 40px rgba(45, 212, 191, 0.2);
}
.floating {
animation: float 6s ease-in-out infinite;
}
@keyframes float {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-20px) rotate(5deg); }
}
.floating-delayed {
animation: float 6s ease-in-out infinite;
animation-delay: -2s;
}
@keyframes float-delayed {
0%, 100% { transform: translateY(0px) rotate(0deg); }
50% { transform: translateY(-15px) rotate(-5deg); }
}
.swirl {
animation: rotate 20s linear infinite;
}
@keyframes rotate {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
.pulse-glow {
animation: pulseGlow 3s ease-in-out infinite;
}
@keyframes pulseGlow {
0%, 100% { box-shadow: 0 0 40px var(--primary-glow); }
50% { box-shadow: 0 0 60px var(--primary-glow), 0 0 80px var(--accent-glow); }
}
.shimmer {
position: relative;
overflow: hidden;
}
.shimmer::after {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
animation: shimmer 3s infinite;
}
@keyframes shimmer {
0% { left: -100%; }
100% { left: 100%; }
}
.fade-in-up {
animation: fadeInUp 0.6s ease-out forwards;
opacity: 0;
}
@keyframes fadeInUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.scale-hover {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.scale-hover:hover {
transform: scale(1.02);
}
.input-glow:focus {
box-shadow: 0 0 0 3px rgba(192, 37, 244, 0.3), 0 0 20px rgba(192, 37, 244, 0.2);
}
.link-underline {
position: relative;
}
.link-underline::after {
content: '';
position: absolute;
bottom: -2px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, #c025f4, #2dd4bf);
transition: width 0.3s ease;
}
.link-underline:hover::after {
width: 100%;
}
.logo-gradient-text {
background: linear-gradient(to bottom right, #a78bfa, #2dd4bf);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.breathing-dot {
animation: breathing 2s ease-in-out infinite;
}
@keyframes breathing {
0%, 100% { transform: scale(1); opacity: 1; }
50% { transform: scale(1.3); opacity: 0.7; }
}
</style>
<style>
body {
min-height: max(884px, 100dvh);
}
</style>
</head>
<body class="bg-background-dark text-white selection:bg-primary/30">
<div class="fixed inset-0 overflow-hidden pointer-events-none">
<div class="absolute top-[-10%] left-[-10%] w-[40%] h-[40%] bg-primary/20 rounded-full blur-[120px] animate-pulse"></div>
<div class="absolute bottom-[-10%] right-[-10%] w-[50%] h-[50%] bg-purple-900/30 rounded-full blur-[120px]"></div>
<span class="material-symbols-outlined absolute top-40 left-10 text-primary/20 text-4xl floating" style="animation-delay: 0s;">menu_book</span>
<span class="material-symbols-outlined absolute top-1/2 right-8 text-primary/20 text-3xl floating" style="animation-delay: 2s;">edit</span>
<span class="material-symbols-outlined absolute bottom-40 left-12 text-primary/20 text-5xl floating" style="animation-delay: 1s;">star</span>
</div>
<header class="relative flex flex-col items-center pt-8 pb-4 z-10 px-6">
<div class="flex flex-col items-center gap-2 fade-in-up" style="animation-delay: 0.1s;">
<div class="relative w-20 h-20 flex items-center justify-center">
<div class="absolute inset-0 bg-primary/10 blur-xl rounded-full pulse-glow"></div>
<div class="relative">
<div class="flex items-center justify-center">
<span class="material-symbols-outlined text-6xl text-white/90" style="font-variation-settings: 'FILL' 0, 'wght' 200;">auto_stories</span>
</div>
<div class="absolute -top-1 -right-2 w-3 h-3 rounded-full bg-[#a78bfa] shadow-[0_0_10px_#a78bfa] breathing-dot" style="animation-delay: 0s;"></div>
<div class="absolute -top-3 left-1/2 -translate-x-1/2 w-2.5 h-2.5 rounded-full bg-[#2dd4bf] shadow-[0_0_10px_#2dd4bf] breathing-dot" style="animation-delay: 0.5s;"></div>
<div class="absolute top-4 -right-4 w-2 h-2 rounded-full bg-[#818cf8] shadow-[0_0_10px_#818cf8] breathing-dot" style="animation-delay: 1s;"></div>
</div>
</div>
<h1 class="app-title text-2xl font-semibold tracking-tight logo-gradient-text mt-2">Englishpersonai</h1>
</div>
<button class="absolute right-6 top-8 text-white/50 hover:text-white transition-colors">
<span class="material-symbols-outlined">help_outline</span>
</button>
</header>
<main class="relative flex flex-col items-center px-6 pb-12 z-10 max-w-md mx-auto">
<div class="relative w-full aspect-square max-w-[200px] mb-6 flex items-center justify-center fade-in-up" style="animation-delay: 0.2s;">
<div class="absolute inset-0 border-2 border-dashed border-primary/30 rounded-full swirl"></div>
<div class="absolute inset-4 border border-accent-teal/20 rounded-full swirl" style="animation-direction: reverse;"></div>
<div class="relative w-36 h-36 rounded-full bg-gradient-to-b from-primary/40 to-transparent p-1 portal-glow overflow-hidden">
<div class="w-full h-full rounded-full bg-[#1e1022] flex items-center justify-center overflow-hidden">
<img alt="Cute anime mascot" class="w-24 h-24 object-contain translate-y-2" src="https://lh3.googleusercontent.com/aida-public/AB6AXuCcpfAswlQLDtk0_WITr5-hLzc7Wk_5hsvuhTpWfh0lVqFPIFEwe7usEx1-LAwRz84vo5p2V4skiu4xoJjgV6tcjBrVDpWjDvAAJ8-kA_mGyFGdnBNiYJ984DiGLojEjFBOKOQQuVYq9cZCn4d46eUtDtU453TKqvdAonhJfvB8prVRKMfGQdHdsA21_2nMpcFR4E6Brl9oPAYAn7JXxU70iX4eHyw1ivWNwsKVCA0HT_tW1F1WSMGNnz0JkRv2tZtq_eGtXR_m6Tni"/>
</div>
</div>
</div>
<div class="text-center mb-8 fade-in-up" style="animation-delay: 0.3s;">
<h2 class="text-3xl font-black italic tracking-tighter text-white drop-shadow-[0_0_10px_rgba(192,37,244,0.8)] uppercase">
START YOUR QUEST
</h2>
<p class="text-primary/80 font-medium tracking-wide mt-1 app-title">Level Up Your English Skills</p>
</div>
<div class="w-full glass rounded-3xl p-8 space-y-6 scale-hover" style="animation-delay: 0.4s;">
<div class="space-y-4">
<div class="space-y-2">
<label class="text-[10px] font-bold text-primary uppercase tracking-[0.2em] ml-1">Email or Username</label>
<div class="relative">
<span class="material-symbols-outlined absolute left-4 top-1/2 -translate-y-1/2 text-white/40">person</span>
<input class="w-full bg-white/5 border border-white/10 rounded-xl py-4 pl-12 pr-4 text-white placeholder:text-white/20 focus:ring-2 focus:ring-primary focus:border-transparent transition-all outline-none input-glow hover:border-white/20" placeholder="Enter email or username" type="text"/>
</div>
</div>
<div class="space-y-2">
<label class="text-[10px] font-bold text-primary uppercase tracking-[0.2em] ml-1">Password</label>
<div class="relative">
<span class="material-symbols-outlined absolute left-4 top-1/2 -translate-y-1/2 text-white/40">lock</span>
<input class="w-full bg-white/5 border border-white/10 rounded-xl py-4 pl-12 pr-12 text-white placeholder:text-white/20 focus:ring-2 focus:ring-primary focus:border-transparent transition-all outline-none input-glow hover:border-white/20" placeholder="••••••••" type="password"/>
<button class="absolute right-4 top-1/2 -translate-y-1/2 text-white/40 hover:text-primary transition-colors">
<span class="material-symbols-outlined">visibility</span>
</button>
</div>
<div class="flex justify-end">
<a class="text-[10px] text-white/40 hover:text-primary uppercase font-bold tracking-tighter link-underline" href="#">Forgot Password?</a>
</div>
</div>
</div>
<button class="w-full relative group">
<div class="absolute -inset-1 bg-gradient-to-r from-primary to-accent-teal rounded-xl blur opacity-60 group-hover:opacity-100 transition duration-300 group-hover:scale-105"></div>
<div class="relative w-full bg-background-dark border border-white/10 rounded-xl py-4 px-4 flex items-center justify-center gap-3 font-bold text-sm overflow-hidden login-btn-glow transition-transform group-hover:scale-[1.02]">
<div class="absolute inset-0 bg-gradient-to-r from-primary/20 to-accent-teal/20 opacity-0 group-hover:opacity-100 transition-opacity"></div>
<span class="relative text-white uppercase tracking-[0.2em]">Log In</span>
</div>
</button>
<div class="relative flex items-center gap-4 my-2">
<div class="h-px w-full bg-white/10"></div>
<span class="text-[10px] text-white/30 uppercase font-bold whitespace-nowrap">Or</span>
<div class="h-px w-full bg-white/10"></div>
</div>
<button class="w-full bg-white text-gray-900 rounded-xl py-3.5 px-4 flex items-center justify-center gap-3 font-bold text-sm shadow-[0_0_15px_rgba(255,255,255,0.1)] hover:bg-gray-100 transition-all hover:scale-[1.02] hover:shadow-[0_0_25px_rgba(255,255,255,0.2)]">
<svg class="w-5 h-5" viewBox="0 0 24 24">
<path d="M22.56 12.25c0-.78-.07-1.53-.2-2.25H12v4.26h5.92c-.26 1.37-1.04 2.53-2.21 3.31v2.77h3.57c2.08-1.92 3.28-4.74 3.28-8.09z" fill="#4285F4"></path>
<path d="M12 23c2.97 0 5.46-.98 7.28-2.66l-3.57-2.77c-.98.66-2.23 1.06-3.71 1.06-2.86 0-5.29-1.93-6.16-4.53H2.18v2.84C3.99 20.53 7.7 23 12 23z" fill="#34A853"></path>
<path d="M5.84 14.09c-.22-.66-.35-1.36-.35-2.09s.13-1.43.35-2.09V7.07H2.18C1.43 8.55 1 10.22 1 12s.43 3.45 1.18 4.93l2.85-2.22.81-.62z" fill="#FBBC05"></path>
<path d="M12 5.38c1.62 0 3.06.56 4.21 1.64l3.15-3.15C17.45 2.09 14.97 1 12 1 7.7 1 3.99 3.47 2.18 7.07l3.66 2.84c.87-2.6 3.3-4.53 6.16-4.53z" fill="#EA4335"></path>
</svg>
Continue with Google
</button>
</div>
<div class="mt-8 flex flex-col items-center gap-4 w-full">
<p class="text-white/40 text-sm fade-in-up" style="animation-delay: 0.5s;">
New Adventurer?
<a class="text-primary font-bold hover:underline underline-offset-4 ml-1 link-underline" href="#">Create Account</a>
</p>
</div>
</main>
<footer class="fixed bottom-0 left-0 w-full h-1 bg-gradient-to-r from-transparent via-primary to-transparent opacity-50"></footer>
</body></html>