-
Notifications
You must be signed in to change notification settings - Fork 31
/
index.html
99 lines (83 loc) · 3.26 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>
<head>
<!-- Meta tags -->
<meta charset="UTF-8">
<meta http-equiv="Content-Security-Policy"
content="default-src 'self' data: 'unsafe-eval' 'unsafe-inline'; script-src 'self' data: 'unsafe-inline' 'unsafe-eval'">
<meta http-equiv="X-Content-Security-Policy"
content="default-src 'self' data: 'unsafe-eval' 'unsafe-inline'; script-src 'self' data: 'unsafe-inline' 'unsafe-eval'">
<!-- Stylesheets -->
<link data-bootstrap rel="stylesheet" />
<link rel="stylesheet" href="./libs/font-awesome/css/all.min.css" />
<link rel="stylesheet " href="./libs/jquery-transfer/icon_font/css/icon_font.css " />
<link rel="stylesheet " href="./libs/jquery-transfer/css/jquery.transfer.css" />
<link rel="stylesheet " href="./libs/flag-icons/css/flag-icons.min.css" />
<link data-app rel="stylesheet" />
</head>
<body>
<!-- Content -->
<div ng-app="appRoot" ng-controller="IndexController as $ctrl" ng-cloak>
<app-component>
<!-- Header -->
<header-pane>
<ui-menu id="mainMenu" add-toggler="true" navbar-class="navbar-dark bg-primary h-100"
navbar-nav-class="me-auto mb-2 mb-lg-0">
<navbar-brand>
<img src="./images/logo.png" />
</navbar-brand>
</ui-menu>
</header-pane>
<toolbar-pane>
<!-- Toolbar -->
<div class="d-flex justify-content-between">
<button ng-disabled="toolbar.previousDisabled" class="btn btn-secondary" ng-click="goPreviousStep()">
{{ 'STEP_PREVIOUS' | translate }}
</button>
<ui-alert message-class="ad-flex align-items-center flex-wrap justify-content-center" neutral-bg="true"
shown-always="true" show-break="true" id="mainStateAlertBox"
icon-tooltip-custom-class="tooltip-mainStateAlertBox">
<div class="flex-break"></div>
<div class="text-dark pt-2" ng-bind-html="toolbar.message">
</div>
</ui-alert>
<button ng-disabled="toolbar.nextDisabled" class="btn btn-primary" ng-click="goNextStep()">
{{ 'STEP_NEXT' | translate }}
</button>
</div>
</toolbar-pane>
<!-- Left Sidebar -->
<left-sidebar-pane>
<ui-wizard-step id="mainWizard" current-step="1"></ui-wizard-step>
</left-sidebar-pane>
<!-- Body -->
<body-pane>
<!--JSONEditModal directive -->
<ui-json-editor-modal></ui-json-editor-modal>
<ui-view></ui-view>
</body-pane>
<!-- Right Sidebar -->
<right-sidebar-pane>
<div id="browser-logs" class="p-2 text-sm"></div>
</right-sidebar-pane>
<!-- Footer -->
<footer-pane>
<div class="d-flex align-items-center justify-content-between text-white me-2 ms-2 h-100">
<div class="dir-ltr" id="workspacePath"></div>
<ui-divider></ui-divider>
<div class="dir-ltr" id="connectedOrgs"></div>
<ui-divider></ui-divider>
<div class="dir-ltr" ng-bind-html="config.copyrightsDisplayText(global.activeLang)"></div>
</div>
</footer-pane>
</app-component>
</div>
<!-- Scripts -->
<script>
window.$ = window.jQuery = require('jquery');
</script>
<script>
require('./js/electron-app/renderer.js');
</script>
</body>
</html>