blob: 279de8281dad5bea7556fd10386fd09fdaad2b89 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
@model UserViewModel
@{
ViewData["Title"] = Model.Username + "'s Profile";
}
<p>
<h2>
@Model.FirstName @Model.LastName
</h2>
<div>
@Model.Username
</div>
</p>
|