This repository has been archived by the owner on Jun 13, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconstant.go
60 lines (58 loc) · 1.71 KB
/
constant.go
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
package loafer
const (
// INSTALLSUCCESSPAGE - Default Installation Page
INSTALLSUCCESSPAGE = `
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
@font-face {
font-family: 'iconfont'; /* project id 2243819 */
src: url('//at.alicdn.com/t/font_2243819_i7pd6nsp1wp.eot');
src: url('//at.alicdn.com/t/font_2243819_i7pd6nsp1wp.eot?#iefix') format('embedded-opentype'),
url('//at.alicdn.com/t/font_2243819_i7pd6nsp1wp.woff2') format('woff2'),
url('//at.alicdn.com/t/font_2243819_i7pd6nsp1wp.woff') format('woff'),
url('//at.alicdn.com/t/font_2243819_i7pd6nsp1wp.ttf') format('truetype'),
url('//at.alicdn.com/t/font_2243819_i7pd6nsp1wp.svg#iconfont') format('svg');
}
.iconfont {
font-family: 'iconfont';
}
html, body, .install-successful {
height: 100%;
width: 100%;
}
.install-successful {
display: flex;
justify-content: center;
align-items: center;
}
.success {
color: #3FDF64;
font-size: 2rem;
font-style: normal;
padding: 0 8px;
}
.card {
box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
padding: 20px 50px;
}
</style>
</head>
<body>
<div class="install-successful">
<div class="card">
<div style="display: flex; flex-flow: row nowrap; justify-content: center; align-items: center;">
<h1>{{APP_NAME}}</h1>
<i class="iconfont success"></i>
</div>
<p style="padding: 20px 0;">{{APP_NAME}} has been installed successfully to your workspace, Thank you!</p>
</div>
</div>
</body>
</html>
`
)