-
Notifications
You must be signed in to change notification settings - Fork 2
/
todo.php
71 lines (71 loc) · 2.27 KB
/
todo.php
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
<?php include("templates/header.php");?>
<section id='container' style='min-height:800px'>
<div class="row">
<div class="large-2 columns"></div>
<div class="large-8 columns">
<ul>
<h2> TODO </h2>
<li> Polish on admin page. (yeah, I know it looks like crap) </li>
<li> User data export - activity of users, what they've submitted to, creation date, etc </li>
<li> Wire up the settings page with the admin setting in the database. </li>
<li> Authentication emails? </li>
<li> Polish on sign-up/login page. (Why is this not directly signing you in when you create an account? I'm really confused by the login / signup process). </li>
<li> Testing </li>
</ul>
</div>
<div class="large-2 columns"></div>
</div>
<div class="row">
<div class="large-2 columns"></div>
<div class="large-8 columns">
<ul>
<h2> Architecture </h2>
<li>fonts</li>
<li>images</li>
<li>js</li>
<li>labels </li>
<li>stylesheets</li>
<li>templates</li>
<li>utils</li>
<li>ajax</li>
<li>index.php</li>
<li>todo.php</li>
</ul>
</div>
<div class="large-2 columns"></div>
</div>
<div class="row" style="display:none;">
<div class="large-2 columns"></div>
<div class="large-8 columns">
<ul>
<h2> Gamify Ideas </h2>
<li>give people points for entering</li>
<li>present images and matching</li>
<li>help people get a sense of how many calories are in something</li>
<li>points</li>
<li>top scores</li>
<li>top foods (most healthy)</li>
</ul>
</div>
<div class="large-2 columns"></div>
</div>
<div class="row" style="display:none;">
<div class="large-2 columns"></div>
<div class="large-8 columns">
<ul>
<h2> Notes from meeting </h2>
<li>Bolding the things known to be bold</li>
<li>match spacing to the correct spacing</li>
<li>start with non-missing values</li>
<li>add or hide things if they aren't present</li>
<li>ideal situation</li>
<li>have a box at the bottom that will contain all of these</li>
<li>make sure that there's a box at the bottom</li>
<li>scorekeeping - grade the users as you go </li>
<li>put a correct value entry in there when you update it</li>
</ul>
</div>
<div class="large-2 columns"></div>
</div>
</section>
<?php include("templates/footer.php");?>