AfRApay/AfRApay.Web/Pages/ErrorRedirect.cshtml

14 lines
280 B
Plaintext
Raw Normal View History

2023-02-11 02:57:15 +01:00
@page
2023-02-11 03:13:13 +01:00
@{
ViewData["Title"] = "Error";
2023-02-16 16:36:26 +01:00
var target = "/" + Request.Query["redir"];
2023-02-11 03:13:13 +01:00
}
2023-02-11 02:57:15 +01:00
@section Header {
2023-02-16 16:36:26 +01:00
<meta http-equiv="refresh" content="5;@target"/>
2023-02-11 02:57:15 +01:00
}
2023-02-11 03:13:13 +01:00
<div class="alert alert-danger" role="alert">
2023-02-11 02:57:15 +01:00
@Request.Query["message"]
</div>
2023-02-11 03:13:13 +01:00
<p>You will be redirected in 5 seconds.</p>