-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.jsp
More file actions
65 lines (48 loc) · 1.56 KB
/
error.jsp
File metadata and controls
65 lines (48 loc) · 1.56 KB
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
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ page import="java.io.*,java.util.*" %>
<%@ page import="careerpath.*"%>
<%@ page isErrorPage="true" %>
<!DOCTYPE html>
<html lang="en">
<head>
<% include file = "header.jsp" %>
</head>
<body>
<%@ import file = "navbar.jsp" %>
<div class="container theme-showcase" role="main">
<!-- Main jumbotron for a primary marketing message or call to action -->
<div class="jumbotron">
<h1>CareerPath</h1>
</div>
<!-- Page Title -->
<div class="page-header">
<h1>Oops something went wrong</h1>
</div>
<div class="row">
<div class="col-xs-12">
<h2>Description</h2>
<% if(exception != null) { %>
<p><code><%=exception %></code></p>
<% } %>
</div>
</div>
</div>
<!-- /container -->
<!-- footer -->
<footer class="navbar-inverse">
<div class="container">
<div class="row">
<div class="col-xs-12">
<p class="text-center">© Copyright 2022 by ismgroup79</p>
</div>
</div>
</div>
</footer>
<!-- End footer -->
<!-- =================== Place all javascript at the end of the document so the pages load faster =================== -->
<!-- jQuery library -->
<script src="<%=request.getContextPath() %>/js/jquery.min.js"></script>
<!-- Bootstrap core JavaScript -->
<script src="<%=request.getContextPath() %>/js/bootstrap.min.js"></script>
</body>
</html>