-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.html
More file actions
62 lines (62 loc) · 2.85 KB
/
settings.html
File metadata and controls
62 lines (62 loc) · 2.85 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
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SolarWinds Demo - Settings</title>
<script>
(function(apiKey){
(function(p,e,n,d,o){var v,w,x,y,z;o=p[d]=p[d]||{};o._q=o._q||[];
v=['initialize','identify','updateOptions','pageLoad','track','trackAgent'];for(w=0,x=v.length;w<x;++w)(function(m){
o[m]=o[m]||function(){o._q[m===v[0]?'unshift':'push']([m].concat([].slice.call(arguments,0)));};})(v[w]);
y=e.createElement(n);y.async=!0;y.src='https://cdn.pendo.io/agent/static/'+apiKey+'/pendo.js';
z=e.getElementsByTagName(n)[0];z.parentNode.insertBefore(y,z);})(window,document,'script','pendo');
})('ce863e40-54e5-48e8-8eee-1614096d5b42');
</script>
<script src="shared.js"></script>
<link rel="stylesheet" href="shared-styles.css">
</head>
<body>
<div class="container">
<div class="header">
<h1>🚀 SolarWinds Monitoring Platform</h1>
<div class="user-info">
<strong id="current-user">Loading...</strong>
<span id="current-account">...</span>
</div>
</div>
<div class="nav">
<a href="index.html" data-pendo="nav-dashboard">📊 Dashboard</a>
<a href="reports.html" data-pendo="nav-reports">📈 Reports</a>
<a href="alerts.html" data-pendo="nav-alerts">🔔 Alerts</a>
<a href="analytics.html" data-pendo="nav-analytics">📉 Analytics</a>
<a href="settings.html" class="active" data-pendo="nav-settings">⚙️ Settings</a>
</div>
<div class="content">
<h2 style="margin-bottom: 20px; color: #003366;">⚙️ Settings</h2>
<div class="dashboard-grid">
<div class="card" onclick="trackFeature('user-preferences')" data-pendo="settings-user">
<div class="card-icon">👤</div>
<h3>User Preferences</h3>
<p>Customize your dashboard and notification preferences</p>
</div>
<div class="card" onclick="trackFeature('integrations-config')" data-pendo="settings-integrations">
<div class="card-icon">🔗</div>
<h3>Integrations</h3>
<p>Configure connections to third-party services</p>
</div>
<div class="card" onclick="trackFeature('security-settings')" data-pendo="settings-security">
<div class="card-icon">🔐</div>
<h3>Security</h3>
<p>Manage API keys, access tokens, and permissions</p>
</div>
<div class="card" onclick="trackFeature('billing-settings')" data-pendo="settings-billing">
<div class="card-icon">💳</div>
<h3>Billing</h3>
<p>View subscription details and payment information</p>
</div>
</div>
</div>
</div>
</body>
</html>