diff options
Diffstat (limited to 'ExamTemplate/Web/Views/User/Login.cshtml')
| -rw-r--r-- | ExamTemplate/Web/Views/User/Login.cshtml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ExamTemplate/Web/Views/User/Login.cshtml b/ExamTemplate/Web/Views/User/Login.cshtml index 8df3013..b57dbbf 100644 --- a/ExamTemplate/Web/Views/User/Login.cshtml +++ b/ExamTemplate/Web/Views/User/Login.cshtml @@ -5,6 +5,10 @@ <form asp-controller="User" asp-action="Login" method="post"> <input type="text" asp-for="Username" placeholder="Username"> + <span asp-validation-for="Username" class="form-error"></span> + <input type="password" asp-for="Password" placeholder="Password"> + <span asp-validation-for="Password" class="form-error"></span> + <input type="submit"> </form> |
