aboutsummaryrefslogtreecommitdiffstats
path: root/src/server/Pages/Error.cshtml
blob: 6d78b871dc51af5c131e451a91c9f5374eb49c48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
@page
@model Dough.Pages.Error

@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <title>Error - dough</title>
</head>
<body>
<div>
    <h1>An error occured</h1>
    <p>Please try again soon</p>
</div>
</body>
</html>