forked from axonivy/docker-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror-404.xhtml
51 lines (44 loc) · 1.85 KB
/
error-404.xhtml
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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:p="http://primefaces.org/ui">
<h:head>
<f:attribute name="primefaces.THEME" value="serenity-ivy" />
<f:facet name="first">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
</f:facet>
<title>PrimeFaces Serenity - Not Found</title>
</h:head>
<h:body styleClass="exception-body notfound">
<div class="exception-panel">
<div class="exception-code">
404
</div>
<div class="exception-detail">
<div class="exception-icon">
<i class="material-icons"></i>
</div>
<h1>PAGE NOT FOUND</h1>
<p>Please contact the system administrator</p>
<p:button icon="ui-icon-arrow-forward" href="/ivy/sys/info.xhtml" value="Back to info" />
</div>
</div>
<style>
.exception-body.notfound .exception-panel .exception-code,
.exception-body.notfound .exception-panel .exception-icon {
background-color: #007095;
}
.exception-code {
color:lightgray;
font-weight: lighter;
font-size: 18em;
}
</style>
<h:outputStylesheet name="css/layout-ivy.css" library="serenity-layout" />
</h:body>
</html>