aboutsummaryrefslogtreecommitdiff
path: root/ExamTemplate/Web/Views/User/Profile.cshtml
diff options
context:
space:
mode:
Diffstat (limited to 'ExamTemplate/Web/Views/User/Profile.cshtml')
-rw-r--r--ExamTemplate/Web/Views/User/Profile.cshtml13
1 files changed, 13 insertions, 0 deletions
diff --git a/ExamTemplate/Web/Views/User/Profile.cshtml b/ExamTemplate/Web/Views/User/Profile.cshtml
new file mode 100644
index 0000000..279de82
--- /dev/null
+++ b/ExamTemplate/Web/Views/User/Profile.cshtml
@@ -0,0 +1,13 @@
+@model UserViewModel
+@{
+ ViewData["Title"] = Model.Username + "'s Profile";
+}
+
+<p>
+ <h2>
+ @Model.FirstName @Model.LastName
+ </h2>
+ <div>
+ @Model.Username
+ </div>
+</p>