-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstuff.html
58 lines (58 loc) · 2.21 KB
/
stuff.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>SpareSpace</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<style type="text/css">
body {
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
}
.color { background-color: red; }
</style>
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link href="css/stuff.css" rel="stylesheet">
<link href="css/jquery-ui-humanity.min.css" rel="stylesheet">
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery-ui-1.10.2.min.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/stuff.js"></script>
</head>
<body>
<div class="container">
<div class="row">
<button type="button" data-toggle="modal" data-target="#modaler">Stuff</button>
<form class="modal hide fade" id="modaler">
<div class="pad">
<label for="hms">How Much Space?</label>
<select class="input-block-level" id="hms">
<option value="1">5' x 5'</option>
<option value="2">10' x 10'</option>
</select>
<label for="wts">Where do you want to store?</label>
<input class="input-block-level typeahead" type="text" id="wts" placeholder="Pittsburgh" />
<div class="w_250 left">
<label for="start">Start:</label>
<input class="input-block-level date" type="text" id="start" />
</div>
<div class="w_250 right">
<label for="end">End:</label>
<input class="input-block-level date" type="text" id="end" />
</div>
<div class="right">
<a href='#'>Cancel</a>
<a href="list.html" class="btn bgo">Next</a>
</div>
<div class="clear"></div>
</div>
</form>
</div>
</div>
</body>
</html>