-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
65 lines (60 loc) · 2.73 KB
/
index.html
File metadata and controls
65 lines (60 loc) · 2.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Github-Issue-Tracker || Login</title>
<!-- favicon -->
<link rel="shortcut icon" href="./assets/fav.jpg" type="image/x-icon">
<!-- fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap" rel="stylesheet">
<!-- style file -->
<link rel="stylesheet" href="style.css">
<!-- daisy ui & tailwind -->
<link href="https://cdn.jsdelivr.net/npm/daisyui@5" rel="stylesheet" type="text/css" />
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
<!-- sweet alert -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</head>
<body class="bg-[#f8fafc] min-h-screen flex items-center justify-center">
<section class="w-full max-w-lg px-4 mx-auto">
<div class="bg-white shadow-xl rounded-xl p-8 text-center">
<div class="flex justify-center mb-4">
<div class="flex items-center justify-center">
<img src="./assets/github-logo.png" alt="github-logo">
</div>
</div>
<h2 class="text-2xl font-bold text-gray-800">
GitHub Issues Tracker
</h2>
<p class="text-gray-500 mb-6">
Sign in to manage your issues
</p>
<div class="text-left mb-4">
<label class="text-sm font-medium">Username</label>
<input id="login-user-name" type="text" placeholder="Enter Username"
class="input input-bordered w-full mt-1">
<p class="text-xs text-indigo-600 mt-1">Default: admin</p>
</div>
<div class="text-left mb-4">
<label class="text-sm font-medium">Password</label>
<input id="login-password" type="password" placeholder="Enter Password"
class="input input-bordered w-full mt-1">
<p class="text-xs text-indigo-600 mt-1">Default: admin123</p>
</div>
<button id="login-btn" class="btn w-full text-white border-none bg-[#4a00ff]">
Sign In
</button>
<div class="divider text-sm">OR</div>
<p class="text-gray-500 mb-2">Demo Credentials:</p>
<div class="bg-gray-100 rounded-lg p-4 text-sm">
<p><b>Username:</b> admin</p>
<p><b>Password:</b> admin123</p>
</div>
</div>
</section>
<script src="scripts/login.js"></script>
</body>
</html>