1
+ <!DOCTYPE html>
2
+ < html >
3
+
4
+ < head >
5
+ < meta charset ="utf-8 " />
6
+ < meta name ="viewport " content ="initial-scale=1, width=device-width " />
7
+ < title > Dashboard Page</ title >
8
+ < link rel ="icon " type ="image/png " href ="/public/34-round.png ">
9
+ < base href ="/ ">
10
+ < script src ="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.1.1/crypto-js.min.js "> </ script >
11
+ < link rel ="stylesheet " href ="../global.css " />
12
+ < link rel ="stylesheet " href ="../index.css " />
13
+ < link rel ="stylesheet " href ="https://fonts.googleapis.com/css2?family=Abhaya Libre:wght@700&display=swap " />
14
+ < link rel ="stylesheet " href ="https://fonts.googleapis.com/css2?family=Abril Fatface:wght@400&display=swap " />
15
+ </ head >
16
+
17
+ < body >
18
+ < script >
19
+ // Redirect to login page if not authenticated
20
+ if ( localStorage . getItem ( 'auth' ) !== 'true' ) {
21
+ window . location . href = '/auth/index.html' ;
22
+ }
23
+ </ script >
24
+
25
+ < div class ="orphic-landing ">
26
+ < section class ="background ">
27
+ < div class ="center ">
28
+ < div class ="header-tabs ">
29
+
30
+ < div class ="tab-labels ">
31
+ < div class ="home ">
32
+ < div class ="button-home ">
33
+ < a class ="home1 " href ="/index.html "> orphic</ a >
34
+ </ div >
35
+ </ div >
36
+ </ div >
37
+
38
+ < div class ="navigation ">
39
+ < div class ="space "> </ div >
40
+ < div class ="docs ">
41
+ < a class ="docs1 " href ="/dashboard/index.html "> Dashboard</ a >
42
+ </ div >
43
+ < div class ="docs ">
44
+ < li > < a class ="docs1 " href ="/monitoring/index.html "> Monitoring</ a > </ li >
45
+ </ div >
46
+ < div class ="docs ">
47
+ < li > < a class ="docs1 " href ="/docs/index.html "> Docs</ a > </ li >
48
+ </ div >
49
+ < div class ="docs ">
50
+ < li > < a class ="docs1 " href ="/contact/index.html "> Contacts</ a > </ li >
51
+ </ div >
52
+ < div class ="space "> </ div >
53
+ </ div >
54
+ < div class ="tab-labels ">
55
+ < div class ="home ">
56
+ < div class ="button-home ">
57
+ < a class ="home1 " href ="/app/index.html "> App</ a >
58
+ < img class ="vector " alt ="" src ="./public/vector.svg " />
59
+ </ div >
60
+ </ div >
61
+ </ div >
62
+ </ div >
63
+
64
+ < div class ="body ">
65
+ < div class ="left-column ">
66
+ < p class ="subtitle "> General Server Monitoring</ p >
67
+ < button class ="button-home ">
68
+ < a class ="docs1 " href ="http://dashboard.orphic.fr:8500/ " target ="_blank "> Trading System
69
+ Database</ a >
70
+ < img class ="vector " loading ="lazy " alt ="" src ="../public/vector.svg " />
71
+ </ button >
72
+ < button class ="button-home ">
73
+ < a class ="docs1 " href ="/index.html " target ="_blank "> PnL Monitoring</ a >
74
+ < img class ="vector " loading ="lazy " alt ="" src ="../public/vector.svg " />
75
+ </ button >
76
+ </ div >
77
+ < div class ="left-column ">
78
+ < p class ="subtitle "> Data RPC Server Monitoring</ p >
79
+ < button class ="button-home ">
80
+ < a class ="docs1 " href ="/docs/index.html "> Private</ a >
81
+ < img class ="vector " loading ="lazy " alt ="" src ="./public/vector.svg " />
82
+ </ button >
83
+ < button class ="button-home ">
84
+ < a class ="docs1 " href ="/docs/index.html "> Public</ a >
85
+ < img class ="vector " loading ="lazy " alt ="" src ="./public/vector.svg " />
86
+ </ button >
87
+ </ div >
88
+ </ div >
89
+ </ div >
90
+ </ div >
91
+ </ section >
92
+ </ div >
93
+ < script src ="../script.js "> </ script >
94
+ </ body >
95
+
96
+ </ html >
0 commit comments