-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
no-service.html
78 lines (74 loc) · 1.92 KB
/
no-service.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
<html>
<head>
<title>Login</title>
<meta charset="UTF-8"/>
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport"/>
<style>
body {
font-family: sans-serif;
background: #1976d2;
color: white;
padding: 20px;
font-size: 22px;
text-align:center;
overflow:hidden;
}
.wrap-header{
line-height:80px;
margin-top:100px;
text-align:center;
}
.error{
width:100px;
display:inline-block;
}
.header{
font-size:36px;
line-height:80px;
}
p, .header, a{
font-weight:300;
}
p{
padding:20px 40px;
line-height:1.5;
}
.github{
}
a{
color:white;
text-decoration:none;
width:100%;
text-align:center;
display:inline-block;
}
a span{
font-size:14px;
}
.logo{
position:absolute;
z-index:-1;
opacity:0.4;
right:0;
top:0;
width:150%;
}
.github{
vertical-align:middle;
}
</style>
</head>
<body>
<img class="logo" src="resources/images/x.svg"/>
<div class="wrap-header">
<img class="error" src="resources/images/error.svg"/>
<div class="header">No service provided under this URL</div>
</div>
<p>This is a headless application which provides services to other applicatons and is not intended for direct
interaction.</p>
<a href="https://github.com/eXist-db/existdb-packageservice">
<img class="github" src="resources/images/GitHub-Mark/PNG/GitHub-Mark-Light-32px.png"/>
<span>View it on Github</span>
</a>
</body>
</html>