netproxy / src / Netproxy.Web / wwwroot / error.cshtml
Code · 17 lines · 316 bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17@model string
<!doctype html>
<html lang="en">
<head>
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<meta charset="utf-8">

	<link href="/Default.css" rel="stylesheet">

	<title>Error</title>
</head>

<body>
	<h3>Error Http @ViewData["ErrorCode"]</h3>
	@Html.Raw(Model)
</body>
</html>