2018-02-21 20:29:23 -05:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
|
|
|
<title>IW4MAdmin::@ViewBag.Title</title>
|
|
|
|
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
|
|
|
|
<environment names="Development">
|
|
|
|
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.css" />
|
|
|
|
<link rel="stylesheet" href="~/lib/open-iconic/font/css/open-iconic-bootstrap.css" />
|
|
|
|
</environment>
|
2018-02-22 01:06:21 -05:00
|
|
|
<environment names="Production">
|
|
|
|
<link rel="stylesheet" href="~/lib/bootstrap/dist/css/bootstrap.min.css" />
|
|
|
|
<link rel="stylesheet" href="~/lib/open-iconic/font/css/open-iconic-bootstrap.min.css" />
|
|
|
|
</environment>
|
2018-02-21 20:29:23 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header>
|
|
|
|
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
|
|
|
|
@Html.ActionLink("IW4MAdmin", "Index", "Home", new { area = "" }, new { @class = "navbar-brand" })
|
|
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarCollapse" aria-controls="navbarCollapse" aria-expanded="false" aria-label="Toggle navigation">
|
|
|
|
<span class="navbar-toggler-icon"></span>
|
|
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarCollapse">
|
|
|
|
<ul class="navbar-nav mr-auto">
|
|
|
|
<li class="nav-item text-center text-md-left">@Html.ActionLink("Home", "Index", "Home", new { area = "" }, new { @class = "nav-link" })</li>
|
|
|
|
<li class="nav-item text-center text-md-left">@Html.ActionLink("Penalties", "List", "Penalty", new { area = "" }, new { @class = "nav-link" })</li>
|
|
|
|
<li class="nav-item text-center text-md-left">@Html.ActionLink("Admins", "PrivilegedAsync", "Client", new { area = "" }, new { @class = "nav-link" })</li>
|
2018-02-23 02:06:13 -05:00
|
|
|
<li class="nav-item text-center text-md-left">@Html.ActionLink("Console", "Index", "Console", new { area = "" }, new { @class = "nav-link" })</li>
|
2018-02-21 20:29:23 -05:00
|
|
|
</ul>
|
|
|
|
<form class="form-inline text-primary pt-3 pb-3" method="get" action="/Client/FindAsync">
|
2018-02-22 01:06:21 -05:00
|
|
|
<input id="client_search" name="clientName" class="form-control mr-auto ml-auto mr-md-2" type="text" placeholder="Find Player" />
|
2018-02-21 20:29:23 -05:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="container pt-0 pb-4 pl-4 pr-4">
|
|
|
|
@RenderBody()
|
|
|
|
<footer></footer>
|
|
|
|
</div>
|
|
|
|
<environment names="Development">
|
|
|
|
<script type="text/javascript" src="~/lib/jQuery/dist/jquery.js"></script>
|
|
|
|
<script type="text/javascript" src="~/lib/popper.js/dist/popper.js"></script>
|
|
|
|
<script type="text/javascript" src="~/lib/bootstrap/dist/js/bootstrap.js"></script>
|
|
|
|
</environment>
|
2018-02-22 01:06:21 -05:00
|
|
|
<environment names="Production">
|
|
|
|
<script type="text/javascript" src="~/lib/jQuery/dist/jquery.min.js"></script>
|
|
|
|
<script type="text/javascript" src="~/lib/popper.js/dist/popper.min.js"></script>
|
|
|
|
<script type="text/javascript" src="~/lib/bootstrap/dist/js/bootstrap.min.js"></script>
|
|
|
|
</environment>
|
2018-02-21 20:29:23 -05:00
|
|
|
@RenderSection("scripts", required: false)
|
|
|
|
</body>
|
|
|
|
</html>
|