Spaces:
Running
Running
File size: 2,407 Bytes
ebd0cce 4c08787 ebd0cce 4c08787 ebd0cce 4c08787 ebd0cce 4c08787 ebd0cce | 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 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Settings | DataViz Pulse</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
</head>
<body class="bg-gray-50">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-6 mt-16">
<h1 class="text-2xl font-bold mb-6">Settings</h1>
<div class="grid grid-cols-1 lg:grid-cols-3 gap-6">
<div class="bg-white rounded-lg shadow p-6 lg:col-span-2">
<h2 class="text-xl font-semibold mb-4">Account Settings</h2>
<form class="space-y-4">
<div>
<label class="block text-sm font-medium mb-1">Email</label>
<input type="email" class="w-full px-3 py-2 border rounded-lg" value="user@example.com">
</div>
<div>
<label class="block text-sm font-medium mb-1">Password</label>
<input type="password" class="w-full px-3 py-2 border rounded-lg" placeholder="••••••••">
</div>
<button type="submit" class="bg-blue-500 text-white px-4 py-2 rounded-lg">Save Changes</button>
</form>
</div>
<div class="bg-white rounded-lg shadow p-6">
<h2 class="text-xl font-semibold mb-4">Preferences</h2>
<div class="space-y-4">
<div>
<label class="flex items-center space-x-2">
<input type="checkbox" class="rounded" checked>
<span>Email Notifications</span>
</label>
</div>
<div>
<label class="flex items-center space-x-2">
<input type="checkbox" class="rounded">
<span>Dark Mode</span>
</label>
</div>
</div>
</div>
</div>
</main>
<script src="components/navbar.js"></script>
<script>
feather.replace();
</script>
</body>
</html> |