1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-18 02:17:05 +00:00

add some MVC error handle examples

This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-08-18 23:14:11 +03:00
parent 35ab1de212
commit 4228dd8ea4
14 changed files with 324 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Client Error Page</title>
</head>
<body>
<h2>{{.Code}}</h2>
<h3>{{.Message}}</h3>
</body>
</html>

View File

@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Server Error Page</title>
</head>
<body>
<h2>{{.Code}}</h2>
<h3>{{.Message}}</h3>
</body>
</html>