You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: public/views/api-keys.html
+76-21Lines changed: 76 additions & 21 deletions
Original file line number
Diff line number
Diff line change
@@ -152,6 +152,33 @@
152
152
text-decoration: underline;
153
153
}
154
154
155
+
/* Tab styles */
156
+
.dashboard-tabs {
157
+
display: flex;
158
+
margin-bottom:20px;
159
+
border-bottom:1px solid #ddd;
160
+
}
161
+
162
+
.tab-button {
163
+
padding:10px20px;
164
+
background: none;
165
+
border: none;
166
+
cursor: pointer;
167
+
font-size:16px;
168
+
border-bottom:3px solid transparent;
169
+
}
170
+
171
+
.tab-button.active {
172
+
border-bottom-color:var(--primary-color);
173
+
font-weight: bold;
174
+
}
175
+
176
+
.tab-content {
177
+
background-color:var(--background-color);
178
+
border-radius:4px;
179
+
padding:20px;
180
+
}
181
+
155
182
@media (max-width:768px) {
156
183
.header {
157
184
flex-direction: column;
@@ -177,27 +204,36 @@
177
204
178
205
<h1>API Key Management</h1>
179
206
180
-
<divclass="intro-section">
181
-
<h2>About API Keys</h2>
182
-
<p>API keys are used to authenticate your requests to the Document Generation API. Each key is associated with your account and can be used to access the API endpoints.</p>
183
-
184
-
<h3>Best Practices</h3>
185
-
<ul>
186
-
<li>Create separate API keys for different environments (development, staging, production)</li>
187
-
<li>Rotate your API keys periodically for enhanced security</li>
188
-
<li>Deactivate or delete API keys that are no longer in use</li>
189
-
<li>Never share your API keys or commit them to version control</li>
190
-
</ul>
191
-
192
-
<h3>Using Your API Keys</h3>
193
-
<p>Include your API key in the request headers using one of the following methods:</p>
<p>API keys are used to authenticate your requests to the Document Generation API. Each key is associated with your account and can be used to access the API endpoints.</p>
222
+
223
+
<h3>Best Practices</h3>
224
+
<ul>
225
+
<li>Create separate API keys for different environments (development, staging, production)</li>
226
+
<li>Rotate your API keys periodically for enhanced security</li>
227
+
<li>Deactivate or delete API keys that are no longer in use</li>
228
+
<li>Never share your API keys or commit them to version control</li>
229
+
</ul>
230
+
231
+
<h3>Using Your API Keys</h3>
232
+
<p>Include your API key in the request headers using one of the following methods:</p>
0 commit comments