diff options
Diffstat (limited to 'TwoStepsAuthenticator.TestWebsite/Views/Shared')
-rw-r--r-- | TwoStepsAuthenticator.TestWebsite/Views/Shared/Error.cshtml | 17 | ||||
-rw-r--r-- | TwoStepsAuthenticator.TestWebsite/Views/Shared/_Layout.cshtml | 11 |
2 files changed, 28 insertions, 0 deletions
diff --git a/TwoStepsAuthenticator.TestWebsite/Views/Shared/Error.cshtml b/TwoStepsAuthenticator.TestWebsite/Views/Shared/Error.cshtml new file mode 100644 index 0000000..b4a1239 --- /dev/null +++ b/TwoStepsAuthenticator.TestWebsite/Views/Shared/Error.cshtml @@ -0,0 +1,17 @@ +@{ + Layout = null; +} + +<!DOCTYPE html> +<html> +<head> + <meta name="viewport" content="width=device-width" /> + <title>Error</title> +</head> +<body> + <hgroup> + <h1>Error.</h1> + <h2>An error occurred while processing your request.</h2> + </hgroup> +</body> +</html>
\ No newline at end of file diff --git a/TwoStepsAuthenticator.TestWebsite/Views/Shared/_Layout.cshtml b/TwoStepsAuthenticator.TestWebsite/Views/Shared/_Layout.cshtml new file mode 100644 index 0000000..917898d --- /dev/null +++ b/TwoStepsAuthenticator.TestWebsite/Views/Shared/_Layout.cshtml @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset="utf-8" /> + <meta name="viewport" content="width=device-width" /> + <title>@ViewBag.Title</title> +</head> +<body> + @RenderBody() +</body> +</html> |