-
Notifications
You must be signed in to change notification settings - Fork 0
/
join.html
52 lines (50 loc) · 2.38 KB
/
join.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/daisyui@3.5.1/dist/full.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<title>Cse Roadmap</title>
</head>
<body>
<div class="hero min-h-screen" style="background-image: url(images/login-bg.jpg);">
<div class="card flex-shrink-0 w-full max-w-sm shadow-2xl bg-base-100">
<div class="card-body">
<div class="flex justify-center items-center">
<a href="index.html"><img src="images/logo.png" alt=""></a>
</div>
<h1 class="text-center text-3xl font-serif text-cyan-600">Login Now</h1>
<form id="login-form" class="form-control">
<!-- Login form inputs and labels -->
<label class="label">
<span class="label-text">Email</span>
</label>
<input type="text" id="login-email" placeholder="Email" class="input input-bordered" />
<label class="label">
<span class="label-text">Password</span>
</label>
<input type="password" id="login-password" placeholder="Password" class="input input-bordered" />
<div class="form-control mt-5 mb-4">
<button type="button" onclick="logIn()" class="btn btn-primary">Log In</button>
</div>
</form>
<div class="flex justify-center items-center gap-5 mb-4">
<img src="images/facebook.png" alt="">
<img src="images/google.png" alt="">
<img src="images/github.png" alt="">
<img src="images/linkedin.png" alt="">
</div>
<!-- ... (social media login buttons, etc.) ... -->
<hr>
<div>
<label class="label">
<p>New to this website? Please <a href="signup.html" class="label-text-alt link link-hover">Signup?</a></p>
</label>
</div>
</div>
</div>
</div>
<script src="loginSignup.js"></script>
</body>
</html>