mirror of
https://github.com/farcasclaudiu/myfriendsaround.git
synced 2026-06-29 11:02:07 +03:00
8 lines
227 B
Plaintext
8 lines
227 B
Plaintext
@if(Request.IsAuthenticated) {
|
|
<text>Welcome <b>@Context.User.Identity.Name</b>!
|
|
[ @Html.ActionLink("Log Off", "LogOff", "Account") ]</text>
|
|
}
|
|
else {
|
|
@:[ @Html.ActionLink("Log On", "LogOn", "Account") ]
|
|
}
|