-
Notifications
You must be signed in to change notification settings - Fork 0
/
Facebook_Settings_page.html
56 lines (53 loc) · 2.3 KB
/
Facebook_Settings_page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Facebook Settings Page Loading Skeleton</title>
<!-- Tailwind CSS CDN -->
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css" rel="stylesheet">
</head>
<body class="bg-gray-100 flex justify-center items-center min-h-screen p-4">
<div class="w-full max-w-3xl p-6 bg-white rounded-lg shadow-md">
<!-- Profile Section -->
<div class="animate-pulse mb-6">
<div class="flex items-center mb-4">
<div class="rounded-full bg-gray-300 h-16 w-16"></div>
<div class="ml-4 flex-1 space-y-4">
<div class="h-6 bg-gray-300 rounded w-1/3"></div>
<div class="h-4 bg-gray-300 rounded w-1/2"></div>
</div>
</div>
<div class="h-4 bg-gray-300 rounded w-5/6 mb-4"></div>
<div class="h-4 bg-gray-300 rounded w-2/3"></div>
</div>
<!-- Account Settings Section -->
<div class="animate-pulse mb-6">
<div class="h-6 bg-gray-300 rounded w-1/4 mb-4"></div>
<div class="space-y-4">
<div class="h-4 bg-gray-300 rounded w-full"></div>
<div class="h-4 bg-gray-300 rounded w-full"></div>
<div class="h-4 bg-gray-300 rounded w-full"></div>
</div>
</div>
<!-- Privacy Settings Section -->
<div class="animate-pulse mb-6">
<div class="h-6 bg-gray-300 rounded w-1/4 mb-4"></div>
<div class="space-y-4">
<div class="h-4 bg-gray-300 rounded w-full"></div>
<div class="h-4 bg-gray-300 rounded w-full"></div>
<div class="h-4 bg-gray-300 rounded w-full"></div>
</div>
</div>
<!-- Notification Settings Section -->
<div class="animate-pulse">
<div class="h-6 bg-gray-300 rounded w-1/4 mb-4"></div>
<div class="space-y-4">
<div class="h-4 bg-gray-300 rounded w-full"></div>
<div class="h-4 bg-gray-300 rounded w-full"></div>
<div class="h-4 bg-gray-300 rounded w-full"></div>
</div>
</div>
</div>
</body>
</html>