-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (51 loc) · 2.31 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - EHC Workshop</title>
<link href="http://fonts.cdnfonts.com/css/audiowide" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.0/css/all.min.css"
integrity="sha512-xh6O/CkQoPOWDdYTDqeRdPCVd1SpvCA9XXcUnZS2FmJNp1coAFzvtCN9BmamE+4aHK8yyUHUSCcJHgXloTyT2A=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="./css/style.css">
<title>Crescent</title>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: '#02bacd',
}
}
}
}
</script>
</head>
<body>
<div id="main" class="bg-black h-[100vh] w-[100vw]">
<div class="flex flex-col items-center py-10">
<h1 class="text-black hidden md:block md:text-[3rem]">Ethical Hackers Club</h1>
<img src="./assets/logo.png" alt="logo" class="h-[150px]">
<form action="" method="" class="pt-5">
<div class="py-1">
<span class="text-white">Username</span>
<input type="text" name="username" id="username"
class="block text-center bg-transparent text-white font-medium border border-white border-[2px] rounded-2xl px-3 py-2 mt-2 md:w-[350px]">
</div>
<div class="py-1">
<span class="text-white">Password</span>
<input type="password" name="password" id="password"
class="block text-center bg-transparent text-white font-medium border border-white border-[2px] rounded-2xl px-3 py-2 mt-2 md:w-[350px]">
</div>
<div class="text-center pt-5">
<input type="submit" value="Login"
class="border border-[2px] border-white px-4 py-2 rounded-full text-white hover:text-black hover:bg-gray-400 cursor-pointer">
</div>
</form>
</div>
</div>
</body>
</html>