imboard
Version:
Most convenient platform for webpage development.
44 lines (37 loc) • 1.52 kB
HTML
<html lang="ko">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=EDGE"/>
<title></title>
<link rel="stylesheet" type="text/css" href="/content/common/core/lib/bootstrap/css/bootstrap-theme.min.css" />
<link rel="stylesheet" type="text/css" href="/content/common/core/lib/bootstrap/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="#{path.module}/imboard/css/imboard-ui.css" />
<link rel="stylesheet" type="text/css" href="/content/common/core/css/common.css" />
<script src="#{path.lib}/jquery/jquery-1.10.2.js"></script>
<script src="/content/common/core/lib/bootstrap/js/bootstrap.min.js"></script>
<script src="#{path.lib}/handlebars/handlebars-v1.3.0.js"></script>
<script src="#{path.module}/imboard/js/imboard-api.js"></script>
<script src="#{path.module}/imboard/js/imboard-ui.js"></script>
<script src="#{path.module}/imboard/js/handlebars-helper.js"></script>
<script>
$(document).ready(function()
{
var rect = $("#container").get(0).getBoundingClientRect();
$("#container").css("margin-top", $(window).height()/2.3 - rect.height/2 + "px");
$("#prev").on("click", function()
{
history.back();
});
});
</script>
</head>
<body>
<div id="container" style="margin:0 auto; width: 600px; text-align: center;">
<h1>접근권한이 없습니다.</h1>
<p>
<button type="button" class="btn btn-warning" id="prev">이전페이지로 돌아가기</button>
</p>
</div>
</body>
</html>