25 lines
632 B
HTML
25 lines
632 B
HTML
<!DOCTYPE>
|
|
<html>
|
|
<head>
|
|
<title>BookSystem 主页</title>
|
|
{{Header}}
|
|
{{navcss}}
|
|
</head>
|
|
|
|
<body>
|
|
{{nav}}
|
|
<div>
|
|
BookSystem Search
|
|
<input type="text" placeholder="What's your favorite book?" id="search_box_main"/>
|
|
<p><img src="img/search_icon.png" alt="Search It!" id="search_box_icon"/></p>
|
|
</div>
|
|
|
|
<script>
|
|
mustLogin();
|
|
|
|
$("#search_box_icon").click(function(){
|
|
location.href="search.html?name="+$("#search_box_main").val();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html> |