-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
40 lines (40 loc) · 1.02 KB
/
test.html
File metadata and controls
40 lines (40 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign in with Google</title>
<style>
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
}
.container {
text-align: center;
}
.btn-google {
background-color: #4285F4;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
border-radius: 5px;
}
.btn-google:hover {
background-color: #357AE8;
}
</style>
</head>
<body>
<div class="container">
<h1>Sign in with Google</h1>
<button class="btn-google" onclick="window.location.href = 'http://localhost:8081/auth-service/oauth2/authorization/google'">
Sign in with Google
</button>
</div>
</body>
</html>