-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (44 loc) · 1.29 KB
/
index.html
File metadata and controls
45 lines (44 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FinGen - Login</title>
<link rel="stylesheet" href="style.css">
<style>
body {
background: url('images/img1.jpg') no-repeat center center fixed;
background-size: cover;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.login-container {
background: rgba(255, 255, 255, 0.8); /* Light background for readability */
padding: 20px;
border-radius: 10px;
text-align: center;
}
.btn {
background: #0A284B; /* Prussian blue */
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
}
.btn:hover {
background: #1C4E80; /* Light blue */
}
</style>
</head>
<body>
<div class="login-container">
<h1>FinGen</h1>
<button onclick="loginWithGoogle()" class="btn">Login with Google</button>
</div>
<script src="script.js"></script>
</body>
</html>