-
Notifications
You must be signed in to change notification settings - Fork 0
/
charles.html
50 lines (35 loc) · 1.34 KB
/
charles.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Gemshare Homework!</title>
<!-- Le styles -->
<link href="css/vendor/bootstrap.css" rel="stylesheet">
<link href="css/vendor/bootstrap-responsive.css" rel="stylesheet">
<link href="css/vendor/typeahead.js-bootstrap.css" rel="stylesheet">
<link href="css/charles.css" rel="stylesheet">
</head>
<body>
<div id="main" class="container">
<div id="main_box" class="text-center">
<h1> Gemshare Typeahead</h1>
<p>Brought to you by a nice, quiet Sunday night!</p>
<input id="new_gem" type="text" placeholder="What gem would you like to share?">
<div class="text-center button-wrapper">
<button type="button" class="btn btn-primary" id="submit_gem">Submit</button>
</div>
</div>
<div id="alert_container">
</div>
</div> <!-- /container -->
<!-- Le javascript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script src="js/vendor/underscore.js"></script>
<script src="js/vendor/backbone.js"></script>
<script src="js/vendor/backbone.localStorage.js"></script>
<script src="js/vendor/typeahead.js"></script>
<script src="js/charles.js"></script>
</body>
</html>