-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSign up.html
97 lines (90 loc) · 4.21 KB
/
Sign up.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FestFrenzy Sign Up</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/tailwind.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Fairplay+Display+SC&display=swap" rel="stylesheet">
<style>
body {
background-image: url('https://images.unsplash.com/photo-1558008258-3256797b43f3?q=80&w=1931&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
background-size: cover;
background-position: center;
margin: 0;
margin-bottom: 40px; /* Add margin from bottom */
}
/* Add some custom styles to match the reference image */
.sign-up-card {
background-color: rgba(255, 255, 255, 0.4); /* Darker translucent background */
backdrop-filter: blur(10px);
border-radius: 1rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
padding: 20px; /* Add some padding */
border: 2px solid #787878; /* Border color */
max-width: 400px; /* Limit width to maintain alignment */
margin-top: 40px; /* Add top margin */
margin-left: 20px; /* Shift to the left */
}
/* Black sign-up button */
.sign-up-btn {
background-color: #000;
color: #fff; /* White text color */
border-radius: 9999px; /* Rounded border */
transition: background-color 0.3s; /* Smooth transition */
}
/* Change background color to grey on hover */
.sign-up-btn:hover {
background-color: #787878; /* Grey color */
}
/* Darker having trouble logging in text */
.trouble-login {
color: #000; /* Black color */
}
/* Navigation bar styles */
.navbar {
background-color: #000; /* Set background color to black */
color: #fff;
padding: 10px 20px;
display: flex;
align-items: center;
}
.festfrenzy {
font-family: 'Poppins', sans-serif;
font-size: 24px;
font-weight: bold; /* Make FESTFRENZY bold */
margin-right: auto;
}
/* Fairplay Display SC font for student sign up text */
.student-sign-up {
font-family: 'Fairplay Display SC', sans-serif;
}
</style>
</head>
<body>
<nav class="navbar">
<h1 class="festfrenzy">FESTFRENZY</h1>
</nav>
<div class="sign-up-card">
<h1 class="student-sign-up text-3xl PLAYFAIR DISPLAY SC">STUDENT SIGN UP</h1>
<p class="mb-6 text-gray-700">Hey, enter your details to sign in to your account</p>
<div class="space-y-4">
<input type="text" placeholder="Enter your Name here" class="w-full p-3 rounded text-lg">
<input type="email" placeholder="Enter your Email Address here" class="w-full p-3 rounded text-lg">
<div class="relative">
<i class="fas fa-venus-mars absolute text-lg" style="top: 10px; left: 10px;"></i>
<select class="pl-10 p-3 rounded text-lg w-48"> <!-- Adjusted width here -->
<option value="male">Male</option>
<option value="female">Female</option>
<option value="other">Other</option>
</select>
</div>
<input type="password" placeholder="Enter your password here" class="w-full p-3 rounded text-lg">
<input type="password" placeholder="Confirm your password here" class="w-full p-3 rounded text-lg">
<p class="text-sm trouble-login text-blue-600 hover:underline cursor-pointer mb-6">Having trouble logging in?</p>
<button class="w-full sign-up-btn p-3 rounded text-lg font-bold">SIGN IN</button> <!-- Add sign-up-btn class -->
</div>
</div>
</body>
</html>