-
Notifications
You must be signed in to change notification settings - Fork 2
/
bootmain.html
62 lines (50 loc) · 2.34 KB
/
bootmain.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title> 나랏말싸미 </title>
<!--Global Javascript-->
<script src="public/javascript/jquery-min.js"></script>
<script src="public/javascript/underscore-min.js"></script>
<script src="public/javascript/backbone-min.js"></script>
<script src="public/javascript/backbone.marionette.min.js"></script>
<!--END Global Javascript-->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="public/stylesheet/components-rounded.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link href="public/stylesheet/search.min.css" rel="stylesheet" type="text/css" />
<link href="public/stylesheet/common.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div id="login-main">
<button class="btn blue uppercase bold">로그인</button>
<button class="btn blue uppercase bold">회원가입</button><!--템플릿으로 해줘야 하는가? 로그인 되었을때, 안되었을때-->
</div>
<div class="col-lg-4 col-lg-offset-4 col-sm-6 col-sm-offset-3 col-xs-12" id="main">
<div id="area-logo">
<div>
<a href="#">
<img id="logo-img" src="public/images/king_sejong.jpg" class="img-responsive center-block">
</a>
</div>
</div>
<div class="input-group">
<form action="/search" method="GET" id="form1">
<input id="inputSearch" type = "text" class="form-control" placeholder="검색어를 입력하세요" style="height: 44px" autocomplete="off" maxlength="100" name="q">
<input type="hidden" name="start" value="1">
<input type="hidden" name="n" value="10">
</form>
<span class="input-group-btn">
<button form="form1" class="btn blue uppercase bold" style="height: 44px">검색</button>
</span>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script type="text/javascript" src="public/javascript/plugins/bootstrap/bootstrap.js"></script>
</body>
</html>