-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
98 lines (96 loc) · 3.54 KB
/
index.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>SpareSpace</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/jquery-ui-humanity.min.css" rel="stylesheet">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/index.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]><script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script><![endif]-->
<link href="css/stuff.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>
<style type="text/css">
.navbar-bottom { padding-top: 40px; padding-bottom: 40px; }
</style>
<script>
$(function() {
$('.js-btn-space').click(function() {
return false;
});
});
</script>
</head>
<body>
<div class="navbar-new">
<div class="container">
<a class="logo" href="#" >
<img src="img/logo.png" width="350" height="200" />
</a>
</div>
</div>
<div class="navbar-middle">
<!-- Example row of columns -->
<div class="message-container">
<div>unique spaces for</div>
<div>unique cases</div>
</div>
<table width="100%" cellspacing="3">
<tr>
<td class ="td_max"></td>
<td class ="td_size" align="center"><a data-toggle="modal" data-target="#modaler" href="#" class="btnspace js-btn-stuff">I have stuff </a></td>
<td class ="td_size" align="center"><a href="#" class="btnspace js-btn-space">I have space </a></td>
<td class ="td_max"></td>
</tr>
<tr></tr>
<tr> </tr>
<tr>
<td class ="td_max"></td>
<td class ="td_size" align="center"><font color="#999999" size ="3">Click this button if you are looking for space to store your stuff</font></td>
<td class ="td_size" align="center"><font color="#999999" size="3">Click this button if you are looking to rent your space to others </font></td>
<td class ="td_max"></td>
</tr>
</table>
</div>
</div>
<div class="navbar-bottom">
<div class="container">
<div class="row">
<img src="img/logo2.png" width="550" height="200" />
<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>
</div>
<footer style="text-align:center; color: #999999">
<p>© 2013 sparespace</p>
</footer>
</body>
</html>