-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathactivity.html
110 lines (106 loc) · 3.02 KB
/
activity.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
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>the Flying Burrito</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.1/jquery.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
<!--this is just a pretty font that we can use =) -->
<link href='http://fonts.googleapis.com/css?family=News+Cycle' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="container">
<!--begin header area -->
<div class="header">
<div class="logo">
<img src="images/logotiny.jpg" alt="the flying burrito">
<span id="pagetitle">theFlyingBurrito</span>
</div>
<div class="user">
<img src="http://placekitten.com/80/80" alt="a kitten!">
<span id="username"> yeti </span>
</div>
</div>
<!-- end header area -->
<!--begin nav -->
<nav>
<ul class="main-nav">
<li> home </li>
<li> plan </li>
<li> current sprint </li>
<li> monitor </li>
<li> members </li>
<li> settings </li>
<form>
<input type="search">
</form>
</ul>
</nav>
<!--end nav-->
<!-- begin bulk of page -->
<div class="activityCol">
<h1 id = "h1"> activity </h1>
<div class = "activityUpdate">
<div id="statusFormWrapper">
<form id="statusForm">
<textarea name="new_status"></textarea>
<input type="submit" value="">
</form>
</div>
<div class="userbox">
<img src="http://placekitten.com/80/80" alt="a kitten!">
<div class="username"> yeti </div>
</div>
</div>
<div class = "activityDate">
<h3> < 9.12.2012 > </h3>
<p> jump to <input type="text" name="jumpdate"></p>
</div>
<div class = "groupActivity">
<div class = "groupActivityEntry">
<div class="userbox">
<img src="http://placekitten.com/80/80" alt="a kitten!">
<div class="username"> yeti </div>
</div>
<p> Currently working on <a href="#">1079: Create a user rewards table</a></p>
<div class="nonblocker">
<p>No blockers to report.</p>
</div>
</div>
<div class = "groupActivityEntry">
<div class="userbox">
<img src="http://placekitten.com/82/82" alt="a kitten!">
<div class="username"> taxi </div>
</div>
<p> Currently working on <a href="#">1088: Write marketing email to inform users of rewards</a>.</p>
<div class="blocker">
Waiting on cost benefit analysis to move on to <a href="#"> 1089: Add more options for redemption than just burritos. </a>
</div>
</div>
</div>
</div>
<div id="sidebar-1">
</div>
<div id="sidebar-2">
</div>
<div class="statusCol">
<div class="monitor">
<h2> monitor </h2>
<textarea class="inputbox">
</textarea>
</div>
<div class="todonext">
<h2> to do next </h2>
<textarea class="inputbox">
</textarea>
</div>
<div class="recentlycompleted">
<h2> recently completed </h2>
<textarea class="inputbox">
</textarea>
</div>
</div>
<!-- end bulk of page -->
</div>
</body>
</html>