-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
54 lines (54 loc) · 3.1 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
<!DOCTYPE html>
<html>
<head>
<title>SpiceCRM</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#CA1B1F">
<link rel="icon" href="./config/favicon">
<link rel="stylesheet" href="vendor/sldassets/styles/salesforce-lightning-design-system.min.css?v=2.15.8">
<link rel="stylesheet" href="assets/css/spicecrm.min.css?v=2021.02.001.1626379027888">
<link rel="stylesheet" href="./config/stylesheet">
<script src="vendor/underscorejs/underscore-umd-min.js"></script>
<script src="vendor/zone.js/zone.umd.min.js"></script>
<script src="vendor/reflect-metadata/Reflect.js"></script>
<script src="vendor/systemjs/system.js"></script>
<script src="vendor/moment/moment.min.js"></script>
<script src="vendor/moment/moment-timezone.min.js"></script>
<script src="vendor/socket.io-client/socket.io.js"></script>
<script src="systemjs.config.js?v=2021.02.001.1626379027888"></script>
<script>
System.import('app').catch(function (err) {
console.error(err);
});
</script>
</head>
<body>
<spicecrm>
<div style="height: 100vh" class="slds-align--absolute-center slds-size--1-of-1 slds-theme--default">
<div class="slds-grid--vertical">
<div class="slds-text-align_center slds-is-relative slds-p-around--medium" style="height: 400px;">
<div class="slds-p-around--small slds-align--absolute-center loader-logo-image">
<img width="100%" height="auto" src="./config/loginimage"/>
</div>
<div class="loaderspinner">
<svg class="bag" height="400" width="400">
<circle cx="200" cy="200" r="100" stroke-width="5" fill="none"></circle>
</svg>
<svg class="over" height="400" width="400">
<circle cx="200" cy="200" r="100" stroke-width="6" fill="none"></circle>
</svg>
</div>
</div>
<div id="loadstatus" class="slds-text-align_center slds-is-relative slds-p-around--medium" style="margin-top: -80px">...loading...</div>
<div id="loadermessage" class="slds-text-align_center slds-is-relative slds-p-around--medium slds-text-heading--medium slds-text-color--error"></div>
</div>
<div class="slds-is-absolute" style="bottom: 10px;">
<div class="slds-align_absolute-center">SpiceCRM - <a href="https://www.spicecrm.com" target=”_blank”>www.spicecrm.com</a></div>
<div class="slds-align_absolute-center">© 2015 - 2021 aac services k.s. All rights reserved.</div>
<div class="slds-align_absolute-center">2021.02.001.1626379027888</div>
</div>
</div>
</spicecrm>
</body>
</html>