forked from Real-Dev-Squad/website-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
168 lines (158 loc) · 5.27 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="/images/index.ico" type="image/x-icon" />
<link rel="stylesheet" href="/global.css" />
<link rel="stylesheet" href="/style.css" />
<title>Dashboard | Real Dev Squad</title>
<script src="/navbar.global.js" async></script>
<script src="/helpers/loadENV.js"></script>
<script src="/constants.js" defer></script>
<script src="/utils.js" defer></script>
<script src="/userLogin.js" async></script>
<script type="module" src="/script.js" defer></script>
</head>
<body>
<nav id="tasksNav"></nav>
<section id="sync-buttons" class="element-display-remove">
<div class="button-container">
<button class="action-button" id="sync-unverified-users">
<span class="spinner"></span>
Sync Unverified Users
</button>
<div class="status" id="sync-unverified-users-update"></div>
</div>
<div class="button-container">
<button class="action-button" id="sync-external-accounts">
<span class="spinner"></span>
Sync External Accounts
</button>
<div class="status" id="sync-external-accounts-update"></div>
</div>
<div class="button-container">
<button class="action-button" id="sync-users-status">
<span class="spinner"></span>
Sync Users Status
</button>
<div class="status" id="sync-users-status-update"></div>
</div>
<div class="button-container">
<button class="action-button" id="sync-idle-users">
<span class="spinner"></span>
Sync Idle Users On Discord
</button>
<div class="status" id="sync-idle-users-update"></div>
</div>
<div class="button-container">
<button class="action-button" id="sync-idle-7d-Plus-users">
<span class="spinner"></span>
Sync Idle 7d+ Users On Discord
</button>
<div class="status" id="sync-idle-7d-Plus-users-update"></div>
</div>
<div class="button-container">
<button class="action-button" id="sync-nicknames">
<span class="spinner"></span>
Sync Users Nicknames
</button>
<div class="status" id="sync-nicknames-status-update"></div>
</div>
<div class="button-container">
<button class="action-button" id="sync-onboarding-31d-plus-users">
<span class="spinner"></span>
Sync Onboarding 31d+ Users
</button>
<div class="status" id="sync-onboarding-31d-plus-users-update"></div>
</div>
</section>
<section class="buttonSection">
<a
class="action-button element-display-remove"
href="/goal/index.html"
id="create-goal"
>
Create Goals
</a>
<a class="action-button" href="/task/index.html"> Create Tasks </a>
<a class="action-button" href="/profile/index.html"> Profile </a>
<a
id="discord-user-link"
class="action-button"
href="/users/discord/index.html"
>
Discord Users
</a>
<a
id="user-management-link"
class="element-display-remove action-button"
href="/users/index.html"
>
User Management
</a>
<a
id="requests-link"
class="action-button element-display-remove"
href="/requests/index.html"
>Requests
</a>
<a
id="extension-requests-link"
class="action-button element-display-remove"
href="extension-requests"
>
Extension Requests
</a>
<a
id="task-requests-link"
class="action-button element-display-remove"
href="task-requests"
>
Task Requests
</a>
<a href="/online-members/online-members.html" class="action-button">
Online Members
</a>
<a class="action-button" href="/groups/index.html"> Discord Groups </a>
<a class="action-button" href="/standup/index.html"> Standup Updates</a>
<a class="action-button" href="/identity-service-logs/index.html"
>Identity Service Logs</a
>
<a
class="action-button element-display-remove"
href="/feed/index.html"
id="create-activity-feed"
>
Activity Feed</a
>
<a id="application-button" href="/applications" class="action-button">
Applications
</a>
<div class="button-container element-display-remove" id="sync-repo-div">
<button id="repo-sync-button" class="action-button">
<span class="spinner"></span>
Sync Repo
</button>
<div class="status" id="sync-repo-status-update"></div>
<div id="toast" class="hidden">
<div class="message"></div>
<div class="progress-bar"></div>
</div>
</div>
</section>
<footer>
<p class="info-repo">
The contents of this website are deployed from this
<a
href="https://github.com/Real-Dev-Squad/website-dashboard"
target="_blank"
rel="noopener noreferrer"
>
open sourced repo
</a>
</p>
</footer>
</body>
</html>