-
Notifications
You must be signed in to change notification settings - Fork 1
/
signup.html
57 lines (54 loc) · 2.6 KB
/
signup.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
57
<!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>SignUp</title>
</head>
<body>
<div class="hero min-h-screen" style="background-image: url(images/login.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="home.html"><img src="images/logo.jpg" alt=""></a>
</div>
<h1 class="text-center text-3xl font-serif text-cyan-600">Create your Account</h1>
<form id="signup-form" class="form-control">
<!-- Signup form inputs and labels -->
<label class="label">
<span class="label-text">Name</span>
</label>
<input type="text" id="first-name" placeholder="Name" class="input input-bordered" />
<label class="label">
<span class="label-text">Email</span>
</label>
<input type="text" id="signup-email" placeholder="Email" class="input input-bordered" />
<label class="label">
<span class="label-text">Password</span>
</label>
<input type="password" id="signup-password" placeholder="Password" class="input input-bordered" />
<div class="form-control mt-5 mb-4">
<button type="button" onclick="signUp()" class="btn btn-primary">Sign Up</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>Already have an account? Please <a href="login.html" class="label-text-alt link link-hover">Login?</a></p>
</label>
</div>
</div>
</div>
</div>
<script src="register.js"></script>
</body>
</html>