aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Views/User/EditProfile.cshtml
diff options
context:
space:
mode:
authorSyndamia <kamen.d.mladenov@protonmail.com>2021-05-08 18:10:08 +0300
committerSyndamia <kamen.d.mladenov@protonmail.com>2021-05-08 18:10:08 +0300
commit82d270a66b8ffca28e321f29b2eb90b2412ac9a7 (patch)
treebd7e985592a0d8d5ec31b590b3c52d403e17e140 /ExamTemplate/Web/Views/User/EditProfile.cshtml
parenta1e46b76a1299e35b1ac8cae69e77c66d74224a6 (diff)
downloadit-kariera-exam-template-82d270a66b8ffca28e321f29b2eb90b2412ac9a7.tar
it-kariera-exam-template-82d270a66b8ffca28e321f29b2eb90b2412ac9a7.tar.gz
it-kariera-exam-template-82d270a66b8ffca28e321f29b2eb90b2412ac9a7.zip
Implemented authorization; Replaced Role with IdentityRole<Guid>; Renamed UserController to AccountController, updated links
Diffstat (limited to 'ExamTemplate/Web/Views/User/EditProfile.cshtml')
-rw-r--r--ExamTemplate/Web/Views/User/EditProfile.cshtml20
1 files changed, 0 insertions, 20 deletions
diff --git a/ExamTemplate/Web/Views/User/EditProfile.cshtml b/ExamTemplate/Web/Views/User/EditProfile.cshtml
deleted file mode 100644
index da08d9a..0000000
--- a/ExamTemplate/Web/Views/User/EditProfile.cshtml
+++ /dev/null
@@ -1,20 +0,0 @@
-@model EditUserViewModel
-@{
- ViewData["Title"] = "Edit Profile";
-}
-
-<form asp-controller="User" asp-action="EditProfile" method="post">
- <label asp-for="Username">Username:</label>
- <input type="text" asp-for="Username" placeholder="@Model.Username">
- <span asp-validation-for="Username" class="form-error"></span>
-
- <label asp-for="FirstName">First Name:</label>
- <input type="text" asp-for="FirstName" placeholder="@Model.FirstName">
- <span asp-validation-for="FirstName" class="form-error"></span>
-
- <label asp-for="LastName">Last Name:</label>
- <input type="text" asp-for="LastName" placeholder="@Model.LastName">
- <span asp-validation-for="LastName" class="form-error"></span>
-
- <input type="submit" value="Update Profile">
-</form>