feat: initial working version of service refs NOISSUE
This commit is contained in:
17
song_of_the_day/Pages/User.cshtml
Normal file
17
song_of_the_day/Pages/User.cshtml
Normal file
@@ -0,0 +1,17 @@
|
||||
@page "{userIndex}"
|
||||
@model UserModel
|
||||
@{
|
||||
ViewData["Title"] = "User #" + @Model.userId;
|
||||
}
|
||||
|
||||
<div class="text-left">
|
||||
<form method="post">
|
||||
<label asp-for="UserNickName">Preferred Name</label>
|
||||
<input asp-for="UserNickName" />
|
||||
<br />
|
||||
<label asp-for="UserName">Contact Name</label>
|
||||
<input asp-for="UserName" disabled />
|
||||
<br />
|
||||
<input type="submit" title="Submit" />
|
||||
</form>
|
||||
</div>
|
||||
Reference in New Issue
Block a user