aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Views/User/Register.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'ExamTemplate/Web/Views/User/Register.cshtml')
-rw-r--r--ExamTemplate/Web/Views/User/Register.cshtml12
1 files changed, 12 insertions, 0 deletions
diff --git a/ExamTemplate/Web/Views/User/Register.cshtml b/ExamTemplate/Web/Views/User/Register.cshtml
new file mode 100644
index 0000000..39e39f2
--- /dev/null
+++ b/ExamTemplate/Web/Views/User/Register.cshtml
@@ -0,0 +1,12 @@
+@model ExamTemplate.Web.Models.User.RegisterUserViewModel
+@{
+ ViewData["Title"] = "Register";
+}
+
+<form asp-controller="User" asp-action="Register" method="post">
+ <input type="text" asp-for="FirstName" placeholder="FirstName">
+ <input type="text" asp-for="LastName" placeholder="LastName">
+ <input type="text" asp-for="Username" placeholder="Username">
+ <input type="password" asp-for="Password" placeholder="Password">
+ <input type="submit">
+</form>