Skip to content

Commit cbeb207

Browse files
authored
Create dummy_sso_with_query.html
1 parent 6cc6483 commit cbeb207

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

dummy_sso_with_query.html

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>Dummy SSO</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
display: flex;
11+
flex-direction: column;
12+
justify-content: center;
13+
align-items: center;
14+
height: 100vh;
15+
margin: 0;
16+
padding: 16px;
17+
background: #f9f9f9;
18+
}
19+
h2 {
20+
margin-bottom: 24px;
21+
text-align: center;
22+
color: #333;
23+
}
24+
button {
25+
background-color: #007bff;
26+
color: #fff;
27+
font-size: 18px;
28+
padding: 14px 28px;
29+
border: none;
30+
border-radius: 8px;
31+
cursor: pointer;
32+
width: 100%;
33+
max-width: 320px;
34+
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
35+
}
36+
button:hover {
37+
background-color: #0056b3;
38+
}
39+
</style>
40+
</head>
41+
<body>
42+
<h2>Dummy OAuth Login</h2>
43+
<button onclick="redirectBack()">Authorize</button>
44+
45+
<script>
46+
function redirectBack() {
47+
// Replace with your app's callback scheme
48+
window.location.href = "zeta://ciscoLoginCallback?code=67af2a53d3424b4b945b463af5d989ae&state=8bb0710c-820c-46f7-b9df-fc1d31b293b3";
49+
}
50+
</script>
51+
</body>
52+
</html>

0 commit comments

Comments
 (0)