-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdashboard.html
72 lines (54 loc) · 1.51 KB
/
dashboard.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
<!DOCTYPE html>
<html>
<head>
<title>Breaking Bread</title>
<link rel="stylesheet" href="css/default.css">
</head>
<body>
<nav class="page-header">
<a href="dashboard.html">Breaking Bread</a>
</nav>
<aside class="profile">
<div class="person">
<img src="images/skylar.jpg">
<span>Skylar G.</span>
</div>
<ul>
<li><a href="profile.html">Profile</a></li>
<li><a href="#">Sign out</a></li>
</ul>
</aside>
<div class="content">
<section id="finder">
<button>Find hosts</button>
<button disabled="disabled">Invite guests</button>
</section>
<section id="upcoming">
<h2>Upcoming</h2>
<div class="table">
<div class="row">
<span class="name">Damien</span><span class="date">5/12/2014 6:30 PM CDT</span>
<span class="address">234 Uptown Ave, Fargo, ND</span>
</div>
<div class="row">
<span class="name">Damien</span><span class="date">5/12/2014 6:30 PM CDT</span>
<span class="address">234 Uptown Ave, Fargo, ND</span>
</div>
</div>
</section>
<section id="upcoming">
<h2>History</h2>
<div class="table">
<div class="row">
<span class="name">One cool dude</span><span class="date">1/12/2014</span>
<span class="address">123 Wavy Rd, San Francisco, ND</span>
</div>
<div class="row">
<span class="name">Bicycle haven</span><span class="date">1/13/2014T</span>
<span class="address">234 Downtown Ave, Portland, OR</span>
</div>
</div>
</section>
</div>
</body>
</html>