-
Notifications
You must be signed in to change notification settings - Fork 0
/
integration.html
184 lines (179 loc) · 6.74 KB
/
integration.html
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>How to Integrate Your App with Google UAS</title>
<link rel="icon" href="images/logo.png" type="image/x-icon" />
<!-- start share tags -->
<!-- Basic Meta Tag for SEO -->
<meta
name="description"
content="Learn how to integrate your app with the Google Club Unified Access System (UAS) for secure, centralized management of user authentication and access control."
/>
<!-- Open Graph Meta Tags (used by Facebook, LinkedIn, WhatsApp, etc.) -->
<meta
property="og:title"
content="How to Integrate Your App with Google Club UAS"
/>
<meta
property="og:description"
content="Learn how to integrate your app with the Google Club Unified Access System (UAS) for secure, centralized management of user authentication and access control."
/>
<meta
property="og:image"
content="https://guas.vercel.app/images/integration_screenshot.png"
/>
<meta
property="og:url"
content="https://guas.vercel.app/integration.html"
/>
<meta property="og:type" content="website" />
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image" />
<meta
name="twitter:title"
content="How to Integrate Your App with Google Club UAS"
/>
<meta
name="twitter:description"
content="Learn how to integrate your app with the Google Club Unified Access System (UAS) for secure, centralized management of user authentication and access control."
/>
<meta
name="twitter:image"
content="https://guas.vercel.app/images/integration_screenshot.png"
/>
<!-- Schema.org Structured Data -->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebPage",
"name": "How to Integrate Your App with Google Club UAS",
"description": "Learn how to integrate your app with the Google Club Unified Access System (UAS) for secure, centralized management of user authentication and access control.",
"url": "https://guas.vercel.app/integration.html",
"image": "https://guas.vercel.app/images/integration_screenshot.png"
}
</script>
<!-- end share tags -->
<!-- start font -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap"
rel="stylesheet"
/>
<!-- end font -->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
<link href="imported/css/m-styles.min.css" rel="stylesheet" />
<link
href="https://cdnjs.cloudflare.com/ajax/libs/prism/1.25.0/themes/prism-okaidia.min.css"
rel="stylesheet"
/>
<style>
.markdown-content img {
max-width: 100%;
max-height: 600px;
}
/* Ensure code blocks look good with padding */
pre code {
padding: 1em;
white-space: pre-wrap; /* Optional: wrap long code lines */
}
body {
background-color: #121212 !important;
color: #e0e0e0;
font-family: "Noto Sans", sans-serif;
}
.container {
background-color: #1e1e1e;
}
.border {
border-color: #333 !important;
}
.bg-light {
background-color: #2c2c2c !important;
}
a.m-btn.green.rnd {
background-color: #0072bb;
color: #eee;
}
a.m-btn.green.rnd:hover {
background-color: #005f99;
}
</style>
<script src="https://cdn.jsdelivr.net/npm/marked/marked.min.js"></script>
</head>
<body>
<div class="container py-5">
<h1
class="text-center my-4 p-3"
style="font-family: 'Poppins', sans-serif"
>
How to Integrate Your App with Google Club
<span style="color: #0072bb">UAS</span>
</h1>
<div class="row justify-content-center ps-2">
<div class="col-lg-10 col-md-12">
<a href="./index.html" class="m-btn green rnd"
><svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 448 512"
style="width: 16px; height: 16px"
fill="#eee"
>
<path
d="M9.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l160 160c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.2 288 416 288c17.7 0 32-14.3 32-32s-14.3-32-32-32l-306.7 0L214.6 118.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-160 160z"
/>
</svg>
Go Back</a
>
</div>
</div>
<div class="row justify-content-center p-4">
<div
class="col-lg-10 col-md-12 border rounded shadow-sm p-5 bg-light mb-4 markdown-content"
id="markdown-content"
>
<!-- Markdown content will be loaded here -->
</div>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-fIuFwJOqjqr5lqlqvjQfPqVEj7mWq7amYAm2CrcuqzEufQzC5yRkJvuz0aTupdqr"
crossorigin="anonymous"
></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.25.0/prism.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.25.0/components/prism-markdown.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.25.0/components/prism-javascript.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/prism/1.25.0/components/prism-typescript.min.js"></script>
<script>
document.addEventListener("DOMContentLoaded", function () {
fetch("how_to_integrate.md")
.then((response) => response.text())
.then((text) => {
// Convert markdown to HTML and add language classes to code blocks
const markdownContent = marked.parse(text, {
highlight: function (code, lang) {
return Prism.highlight(
code,
Prism.languages[lang] || Prism.languages.markup,
lang
);
},
langPrefix: "language-", // Prism requires classes like `language-js`
});
document.getElementById("markdown-content").innerHTML =
markdownContent;
Prism.highlightAllUnder(
document.getElementById("markdown-content")
);
});
});
</script>
</body>
</html>