2025-04-02 22:08:17 +01:00

26 lines
471 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://learn.microsoft.com/aspnet/core">building Web apps with ASP.NET Core</a>.</p>
</div>
<form method="post">
<button onclick="onClickMe">
click me
</button>
</form>
@section Scripts {
<script>
function onClickMe() {
alert('yoloooo');
}
</script>
}