-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.aspx
29 lines (23 loc) · 919 Bytes
/
error.aspx
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
<%@ Page Title="" Language="C#" MasterPageFile="~/General.master" AutoEventWireup="true" CodeFile="error.aspx.cs" Inherits="error" %>
<asp:Content ID="Content1" ContentPlaceHolderID="title" Runat="Server">Error - JobFinder</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ExtraHead" Runat="Server">
<style>
section#errorCont {
padding: 140px 0;
background-color: #fff;
border: 1px solid #ccc;
}
#errorCont p {
text-align: center;
}
p#errorMessage {
margin-bottom: 10px;
}
</style>
</asp:Content>
<asp:Content ID="Content3" ContentPlaceHolderID="BodyHolder" Runat="Server">
<section id="errorCont">
<p id="errorMessage">It seems there has been an error.</p>
<p id="errorBis">We appologize for any inconvenience this may cause.</p>
</section>
</asp:Content>