-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathindex.html
99 lines (99 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<base href="%BASE_URL%" />
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="author" content="opennodecloud.com" />
<title>Waldur | Cloud Service Management</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<meta name="api-url" content="%VITE_API_URL%" />
</head>
<body class="fixed-sidebar">
<noscript>
<div class="container">
<div class="row">
<div
class="col-xs-12 col-sm-8 offset-sm-2 col-lg-6 offset-lg-3"
>
<div class="noscript">
<div class="noscript-img"></div>
<div class="noscript-content">
<h4>
It seems javascript is disabled. To display the content,
enable javascript in your browser.
</h4>
<p>
Review and follow the instructions provided by your browser:
</p>
<ul>
<li>
<a
href="https://activatejavascript.org/instructions/chrome#instructions"
target="_blank"
rel="noopener noreferrer"
>Chrome</a
>
</li>
<li>
<a
href="https://activatejavascript.org/instructions/firefox#instructions"
target="_blank"
rel="noopener noreferrer"
>Firefox</a
>
</li>
<li>
<a
href="https://activatejavascript.org/instructions/opera#instructions"
target="_blank"
rel="noopener noreferrer"
>Opera</a
>
</li>
<li>
<a
href="https://activatejavascript.org/instructions/safari#instructions"
target="_blank"
rel="noopener noreferrer"
>Safari</a
>
</li>
<li>
<a
href="https://activatejavascript.org/instructions/ie#instructions"
target="_blank"
rel="noopener noreferrer"
>IE & Edge</a
>
</li>
<li>
<a
href="https://activatejavascript.org/instructions/ios#instructions"
target="_blank"
rel="noopener noreferrer"
>iOS</a
>
</li>
<li>
<a
href="https://activatejavascript.org/instructions/android#instructions"
target="_blank"
rel="noopener noreferrer"
>Android</a
>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</noscript>
<div id="wrapper" class="d-flex flex-column flex-root">
<div id="react-root" class="d-flex flex-column flex-root"></div>
</div>
<script type="module" src="/src/index.tsx"></script>
</body>
</html>