24 lines
968 B
Plaintext
24 lines
968 B
Plaintext
@using Microsoft.AspNet.Identity
|
|
@if (Request.IsAuthenticated)
|
|
{
|
|
using (Html.BeginForm("LogOff", "Account", FormMethod.Post, new { id = "logoutForm", @class = "navbar-right" }))
|
|
{
|
|
@Html.AntiForgeryToken()
|
|
|
|
<ul class="nav navbar-nav navbar-right">
|
|
@*<li>
|
|
@Html.ActionLink("Hello " + User.Identity.GetUserName() + "!", "Manage", "Account", routeValues: null, htmlAttributes: new { title = "Manage" })
|
|
</li>*@
|
|
<li><a href="#">Hello @User.Identity.GetUserName()</a></li>
|
|
<li><a href="javascript:document.getElementById('logoutForm').submit()">Log off</a></li>
|
|
</ul>
|
|
}
|
|
}
|
|
else
|
|
{
|
|
<ul class="nav navbar-nav navbar-right">
|
|
@*<li>@Html.ActionLink("Register", "Register", "Account", routeValues: null, htmlAttributes: new { id = "registerLink" })</li>*@
|
|
<li>@Html.ActionLink("Log in", "Login", "Account", routeValues: null, htmlAttributes: new { id = "loginLink" })</li>
|
|
</ul>
|
|
}
|