Skip to content

Commit abc933f

Browse files
committed
Added test page
1 parent efc5f91 commit abc933f

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

src/WebUI/Pages/Ping.cshtml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
@page
2+
@model Ping
3+
4+
@{
5+
Layout = null;
6+
}
7+
8+
<!DOCTYPE html>
9+
10+
<html>
11+
<head>
12+
<title></title>
13+
</head>
14+
<body>
15+
<div>
16+
<h1>Pong</h1>
17+
<p>Test Page</p>
18+
</div>
19+
</body>
20+
</html>

src/WebUI/Pages/Ping.cshtml.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using Microsoft.AspNetCore.Authorization;
2+
using Microsoft.AspNetCore.Mvc.RazorPages;
3+
4+
namespace WebUI.Pages;
5+
6+
[AllowAnonymous]
7+
public class Ping : PageModel
8+
{
9+
public void OnGet()
10+
{
11+
12+
}
13+
}

0 commit comments

Comments
 (0)