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.
|
|
@{ ViewBag.Title = "Main"; Layout = null;}
<!DOCTYPE html><html lang="ko"><head> <title> Main Page </title> <meta http-equiv="content-type" content="text/html;charset=UTF-8" /></head>
<style> .navbar-brand{ font-size : 30px; color : black; }</style>
<body> <div class="navbar navbar-inverse navbar-fixed-top"> <div class="container"> <div class="navbar-header"> @Html.ActionLink("메인페이지", "Main", "Home", new { area = "" }, new { @class = "navbar-brand" }) </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav"> <li>@Html.ActionLink("회원가입", "Index", "Home")</li> <li>@Html.ActionLink("로그인", "Login", "Home")</li> </ul> </div> </div> </div></body></html>
|