-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
60 lines (55 loc) · 2.34 KB
/
index.htm
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Beats</title>
<link href="css/html5reset.css" rel="stylesheet" type="text/css">
<link href="css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="css/main.css" rel="stylesheet" type="text/css">
<!--[if IE]>
<script src="js/html5shiv.js" type="text/javascript"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner">
<div class="container">
<a data-target=".nav-collapse" data-toggle="collapse" class="btn btn-navbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</a>
<a href="#" class="brand">Beats</a>
<div class="nav-collapse collapse">
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
</ul>
<form class="navbar-form pull-right">
<input type="text" placeholder="Email" class="span2">
<input type="password" placeholder="Password" class="span2">
<button type="submit" class="btn">Sign in</button>
</form>
</div><!--/.nav-collapse -->
</div>
</div>
</div>
<div class="container">
<!-- Main hero unit for a primary marketing message or call to action -->
<div class="home-content">
<h1>New here?</h1>
<form>
<input type="text" placeholder="Full name" name="name"><br>
<input type="text" placeholder="Beats name" name="handle"><br>
<input type="text" placeholder="Primary email" name="email"><br>
<input type="password" placeholder="Password" name="password"><br>
<input type="password" placeholder="Re-enter password" name="password2"><br>
<button type="submit" class="btn btn-primary btn-large">Sign Up</button>
</form>
</div>
<hr>
<footer>
<p>© Beats 2012</p>
</footer>
</div>
</body>
</html>