Skip to content

Commit 4df3cac

Browse files
committed
put minimal but valid html document tags
1 parent d0a8d93 commit 4df3cac

File tree

1 file changed

+13
-9
lines changed
  • projects/.net8/RazorFormHandling/Pages

1 file changed

+13
-9
lines changed
Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
1-
<Router AppAssembly="typeof(Program).Assembly">
2-
<Found Context="routeData">
3-
<RouteView RouteData="routeData" />
4-
</Found>
5-
<NotFound>
6-
<h1>Page not found</h1>
7-
<p>Sorry, but there's nothing here!</p>
8-
</NotFound>
9-
</Router>
1+
<html>
2+
<body>
3+
<Router AppAssembly="typeof(Program).Assembly">
4+
<Found Context="routeData">
5+
<RouteView RouteData="routeData" />
6+
</Found>
7+
<NotFound>
8+
<h1>Page not found</h1>
9+
<p>Sorry, but there's nothing here!</p>
10+
</NotFound>
11+
</Router>
12+
</body>
13+
</html>

0 commit comments

Comments
 (0)