-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdummy_sso_with_query.html
More file actions
52 lines (51 loc) · 1.39 KB
/
dummy_sso_with_query.html
File metadata and controls
52 lines (51 loc) · 1.39 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Dummy SSO</title>
<style>
body {
font-family: Arial, sans-serif;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
padding: 16px;
background: #f9f9f9;
}
h2 {
margin-bottom: 24px;
text-align: center;
color: #333;
}
button {
background-color: #007bff;
color: #fff;
font-size: 18px;
padding: 14px 28px;
border: none;
border-radius: 8px;
cursor: pointer;
width: 100%;
max-width: 320px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
button:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<h2>Dummy OAuth Login</h2>
<button onclick="redirectBack()">Authorize</button>
<script>
function redirectBack() {
// Replace with your app's callback scheme
window.location.href = "zeta://ciscoLoginCallback?code=67af2a53d3424b4b945b463af5d989ae&state=8bb0710c-820c-46f7-b9df-fc1d31b293b3";
}
</script>
</body>
</html>