OSS인증 - 팀장 : 서영민 - 팀원 : 김현, 박상진, 박승영, 윤동수, 김성미
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
911 B

4 years ago
  1. 
  2. @{
  3. ViewBag.Title = "Main";
  4. Layout = null;
  5. }
  6. <!DOCTYPE html>
  7. <html lang="ko">
  8. <head>
  9. <title> Main Page </title>
  10. <meta http-equiv="content-type" content="text/html;charset=UTF-8" />
  11. </head>
  12. <style>
  13. .navbar-brand{
  14. font-size : 30px;
  15. color : black;
  16. }
  17. </style>
  18. <body>
  19. <div class="navbar navbar-inverse navbar-fixed-top">
  20. <div class="container">
  21. <div class="navbar-header">
  22. @Html.ActionLink("메인페이지", "Main", "Home", new { area = "" }, new { @class = "navbar-brand" })
  23. </div>
  24. <div class="navbar-collapse collapse">
  25. <ul class="nav navbar-nav">
  26. <li>@Html.ActionLink("회원가입", "Index", "Home")</li>
  27. <li>@Html.ActionLink("로그인", "Login", "Home")</li>
  28. </ul>
  29. </div>
  30. </div>
  31. </div>
  32. </body>
  33. </html>