-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
77 lines (72 loc) · 2.88 KB
/
signup.html
File metadata and controls
77 lines (72 loc) · 2.88 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
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login | Football Insights</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
darkMode: 'class',
theme: {
extend: {
colors: {
dark: {
800: '#1e293b',
900: '#0f172a',
}
}
}
}
}
</script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
<style>
.transition-all {
transition: all 0.3s ease;
}
/* Style for the "Back to Home" button */
.back-to-home-button {
display: inline-block;
padding: 0.5rem 1rem;
text-align: center;
/* Adjust padding as needed */
background-color: #2563EB;
/* Adjust color as needed */
color: #fff;
border-radius: 0.25rem;
transition: background-color 0.3s ease;
}
.back-to-home-button:hover {
background-color: #1d4ed8;
/* Adjust hover color as needed */
}
</style>
</head>
<body class="bg-dark-900 text-gray-100 flex h-screen">
<div class="flex-1 flex items-center justify-center">
<div class="flex-1 flex items-center justify-center">
<div class="bg-dark-800 p-8 rounded-lg shadow-lg w-96">
<h1 class="text-3xl font-bold text-white mb-6">Sign Up</h1>
<form>
<div class="mb-4">
<label for="username" class="block text-gray-300 mb-2">Username</label>
<input type="text" id="username" class="w-full p-2 rounded bg-dark-700 text-white" required>
</div>
<div class="mb-4">
<label for="email" class="block text-gray-300 mb-2">Email</label>
<input type="email" id="email" class="w-full p-2 rounded bg-dark-700 text-white" required>
</div>
<div class="mb-4">
<label for="password" class="block text-gray-300 mb-2">Password</label>
<input type="password" id="password" class="w-full p-2 rounded bg-dark-700 text-white" required>
</div>
<button type="submit" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded w-full">Sign Up</button>
</form>
<p class="text-gray-400 mt-4">Already have an account? <a href="login.html" class="text-blue-400">Login</a></p>
<!-- Back Button -->
<a href="index.html" class="back-to-home-button">Back to Home</a>
</div>
</div>
</body>
</html>