Advertisement
borceste

Layyout logoff

Jan 28th, 2020
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. <style>
  2. #account-settings {
  3. float: right;
  4. background: linear-gradient(270deg, rgba(241,255,0,0.35) 0%, rgba(170,0,255,0.8) 82%);
  5. padding: 0px 20px 0px 10px;
  6. z-index:-1;
  7. }
  8. #account-settings a {
  9. position: relative;
  10. z-index: 5;
  11. text-decoration: none;
  12. font-size:x-large;
  13. color:#ffffff;
  14. padding-right:5px;
  15.  
  16. }
  17. #main-background{
  18. padding:15px;
  19. }
  20. </style>
  21.  
  22. <div id="account-settings">
  23. @{
  24. if (!Context.User.Identity.IsAuthenticated)
  25. {
  26.  
  27. @Html.ActionLink("Sign up", "Login", "Account")
  28.  
  29. }
  30. else
  31. {
  32. @Html.ActionLink("Welcome " + Context.User.Identity.Name, "Details", "ApplicationUsers", new { id = Context.User.Identity.Name })
  33. @Html.ActionLink("Log out", "LogOff", "Account")
  34. }
  35. }
  36. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement