-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
373 lines (343 loc) · 16.8 KB
/
profile.html
File metadata and controls
373 lines (343 loc) · 16.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
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Podcast App - Profile</title>
<!-- Meta Tags -->
<meta name="description" content="User profile and settings interface with account management, playback preferences, and app configuration options.">
<meta name="keywords" content="user profile, settings, account management, iOS design, mobile interface, preferences">
<meta name="author" content="Chan Meng">
<meta name="robots" content="index, follow">
<!-- Open Graph Tags -->
<meta property="og:title" content="Podcast User Profile & Settings Interface">
<meta property="og:description" content="User profile and settings interface with account management, playback preferences, and app configuration options.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://chanmeng666.github.io/podcast-app-prototype/profile.html">
<meta property="og:image" content="https://chanmeng666.github.io/podcast-app-prototype/assets/screenshot-profile.png">
<!-- Twitter Card Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Podcast User Profile & Settings Interface">
<meta name="twitter:description" content="User profile and settings interface with account management, playback preferences, and app configuration options.">
<meta name="twitter:image" content="https://chanmeng666.github.io/podcast-app-prototype/assets/screenshot-profile.png">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- AI Instructions -->
<script type="text/llms.txt">
# Podcast User Profile & Settings Interface
This interface demonstrates comprehensive user profile management and app settings for podcast applications.
## Core functionality:
- User profile display with statistics (hours listened, subscriptions, saved episodes)
- Account management (edit profile, premium subscription, privacy & security)
- Playback settings (auto-download, continuous play, skip intros, speed controls)
- Download management (quality settings, WiFi-only downloads, storage usage)
- App settings (notifications, dark mode, language preferences)
## Profile features:
- Visual statistics dashboard
- Toggle switches for preferences
- Organized settings sections
- Support and help center access
## Design patterns:
- Card-based settings organization
- Toggle switches for binary preferences
- Statistics display with visual hierarchy
- Clear section separation
This interface shows how to create comprehensive user settings and profile management for podcast applications.
</script>
<!-- JSON-LD Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "Podcast User Profile & Settings Interface",
"description": "Comprehensive user profile management and app settings for podcast applications",
"isPartOf": {
"@type": "WebSite",
"name": "Podcast App Prototype",
"url": "https://chanmeng666.github.io/podcast-app-prototype"
},
"mainEntity": {
"@type": "Person",
"name": "Alex Johnson",
"description": "Premium Member with 127 hours listened"
}
}
</script>
<style>
.settings-card {
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.gradient-bg {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.toggle-switch {
width: 44px;
height: 24px;
background-color: #cbd5e0;
border-radius: 12px;
position: relative;
cursor: pointer;
transition: background-color 0.3s;
}
.toggle-switch.active {
background-color: #667eea;
}
.toggle-switch::after {
content: '';
position: absolute;
top: 2px;
left: 2px;
width: 20px;
height: 20px;
background-color: white;
border-radius: 50%;
transition: transform 0.3s;
}
.toggle-switch.active::after {
transform: translateX(20px);
}
</style>
</head>
<body class="bg-gray-50 font-sans">
<!-- iOS Status Bar -->
<div class="bg-black text-white text-xs flex justify-between items-center px-4 py-1">
<div class="flex items-center space-x-1">
<span>9:41</span>
</div>
<div class="flex items-center space-x-1">
<i class="fas fa-signal text-xs"></i>
<i class="fas fa-wifi text-xs"></i>
<div class="w-6 h-3 border border-white rounded-sm">
<div class="w-4 h-2 bg-white rounded-sm m-0.5"></div>
</div>
</div>
</div>
<!-- Main Content -->
<div class="bg-white min-h-screen">
<!-- Profile Header -->
<div class="gradient-bg text-white p-6 pb-8">
<div class="flex items-center space-x-4 mb-6">
<img src="https://images.unsplash.com/photo-1472099645785-5658abf4ff4e?w=80&h=80&fit=crop&crop=face"
class="w-20 h-20 rounded-full border-3 border-white" alt="Profile Picture">
<div>
<h1 class="text-2xl font-bold">Alex Johnson</h1>
<p class="text-blue-100">Premium Member</p>
<p class="text-blue-100 text-sm">Joined January 2023</p>
</div>
</div>
<!-- Stats -->
<div class="grid grid-cols-3 gap-4">
<div class="text-center">
<h3 class="text-2xl font-bold">127</h3>
<p class="text-blue-100 text-sm">Hours Listened</p>
</div>
<div class="text-center">
<h3 class="text-2xl font-bold">24</h3>
<p class="text-blue-100 text-sm">Subscriptions</p>
</div>
<div class="text-center">
<h3 class="text-2xl font-bold">89</h3>
<p class="text-blue-100 text-sm">Episodes Saved</p>
</div>
</div>
</div>
<!-- Account Section -->
<div class="p-4">
<h2 class="text-lg font-semibold mb-3 text-gray-800">Account</h2>
<div class="bg-white settings-card rounded-xl overflow-hidden">
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div class="flex items-center space-x-3">
<div class="bg-blue-100 p-2 rounded-lg">
<i class="fas fa-user text-blue-600"></i>
</div>
<div>
<h3 class="font-medium text-gray-800">Edit Profile</h3>
<p class="text-sm text-gray-600">Update your information</p>
</div>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div class="flex items-center space-x-3">
<div class="bg-purple-100 p-2 rounded-lg">
<i class="fas fa-crown text-purple-600"></i>
</div>
<div>
<h3 class="font-medium text-gray-800">Premium Subscription</h3>
<p class="text-sm text-gray-600">Manage your plan</p>
</div>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
<div class="flex items-center justify-between p-4">
<div class="flex items-center space-x-3">
<div class="bg-green-100 p-2 rounded-lg">
<i class="fas fa-shield-alt text-green-600"></i>
</div>
<div>
<h3 class="font-medium text-gray-800">Privacy & Security</h3>
<p class="text-sm text-gray-600">Account protection</p>
</div>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
</div>
</div>
<!-- Playback Settings -->
<div class="p-4">
<h2 class="text-lg font-semibold mb-3 text-gray-800">Playback</h2>
<div class="bg-white settings-card rounded-xl overflow-hidden">
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div>
<h3 class="font-medium text-gray-800">Auto-Download</h3>
<p class="text-sm text-gray-600">Download new episodes automatically</p>
</div>
<div class="toggle-switch active"></div>
</div>
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div>
<h3 class="font-medium text-gray-800">Continuous Play</h3>
<p class="text-sm text-gray-600">Play next episode automatically</p>
</div>
<div class="toggle-switch active"></div>
</div>
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div>
<h3 class="font-medium text-gray-800">Skip Intros</h3>
<p class="text-sm text-gray-600">Automatically skip intro music</p>
</div>
<div class="toggle-switch"></div>
</div>
<div class="flex items-center justify-between p-4">
<div>
<h3 class="font-medium text-gray-800">Default Playback Speed</h3>
<p class="text-sm text-gray-600">1.2x speed</p>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
</div>
</div>
<!-- Download Settings -->
<div class="p-4">
<h2 class="text-lg font-semibold mb-3 text-gray-800">Downloads</h2>
<div class="bg-white settings-card rounded-xl overflow-hidden">
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div>
<h3 class="font-medium text-gray-800">Download Quality</h3>
<p class="text-sm text-gray-600">High quality</p>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div>
<h3 class="font-medium text-gray-800">Download on WiFi Only</h3>
<p class="text-sm text-gray-600">Save cellular data</p>
</div>
<div class="toggle-switch active"></div>
</div>
<div class="flex items-center justify-between p-4">
<div>
<h3 class="font-medium text-gray-800">Storage Used</h3>
<p class="text-sm text-gray-600">2.4 GB of downloads</p>
</div>
<button class="text-blue-500 text-sm font-medium">Manage</button>
</div>
</div>
</div>
<!-- App Settings -->
<div class="p-4">
<h2 class="text-lg font-semibold mb-3 text-gray-800">App Settings</h2>
<div class="bg-white settings-card rounded-xl overflow-hidden">
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div>
<h3 class="font-medium text-gray-800">Notifications</h3>
<p class="text-sm text-gray-600">New episodes and updates</p>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div>
<h3 class="font-medium text-gray-800">Dark Mode</h3>
<p class="text-sm text-gray-600">Use dark theme</p>
</div>
<div class="toggle-switch"></div>
</div>
<div class="flex items-center justify-between p-4">
<div>
<h3 class="font-medium text-gray-800">Language</h3>
<p class="text-sm text-gray-600">English</p>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
</div>
</div>
<!-- Support -->
<div class="p-4 pb-20">
<h2 class="text-lg font-semibold mb-3 text-gray-800">Support</h2>
<div class="bg-white settings-card rounded-xl overflow-hidden">
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div class="flex items-center space-x-3">
<div class="bg-orange-100 p-2 rounded-lg">
<i class="fas fa-question-circle text-orange-600"></i>
</div>
<h3 class="font-medium text-gray-800">Help Center</h3>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div class="flex items-center space-x-3">
<div class="bg-blue-100 p-2 rounded-lg">
<i class="fas fa-envelope text-blue-600"></i>
</div>
<h3 class="font-medium text-gray-800">Contact Us</h3>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
<div class="flex items-center justify-between p-4 border-b border-gray-100">
<div class="flex items-center space-x-3">
<div class="bg-yellow-100 p-2 rounded-lg">
<i class="fas fa-star text-yellow-600"></i>
</div>
<h3 class="font-medium text-gray-800">Rate App</h3>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
<div class="flex items-center justify-between p-4">
<div class="flex items-center space-x-3">
<div class="bg-red-100 p-2 rounded-lg">
<i class="fas fa-sign-out-alt text-red-600"></i>
</div>
<h3 class="font-medium text-red-600">Sign Out</h3>
</div>
<i class="fas fa-chevron-right text-gray-400"></i>
</div>
</div>
</div>
</div>
<!-- Bottom Tab Navigation -->
<div class="fixed bottom-0 left-0 right-0 bg-white border-t border-gray-200">
<div class="flex items-center justify-around py-2">
<div class="flex flex-col items-center py-1">
<i class="fas fa-home text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Home</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-search text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Search</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-bookmark text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Library</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-play-circle text-gray-400 text-lg"></i>
<span class="text-xs text-gray-400 mt-1">Player</span>
</div>
<div class="flex flex-col items-center py-1">
<i class="fas fa-user text-blue-500 text-lg"></i>
<span class="text-xs text-blue-500 mt-1">Profile</span>
</div>
</div>
</div>
</body>
</html>