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
37 lines
911 B
|
|
@{
|
|
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>
|
|
|