15 lines
355 B
Plaintext
15 lines
355 B
Plaintext
@page
|
|
@model IndexModel
|
|
@{
|
|
ViewData["Title"] = "Home page";
|
|
}
|
|
|
|
<div class="text-center">
|
|
<h1 class="display-4">Welcome</h1>
|
|
<p>Learn about <a href="https://docs.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
|
|
<form method=post>
|
|
<input type="text" width="200" name="test" id="sql1" />
|
|
</form>
|
|
|
|
</div>
|