forked from mtierltd/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgoals.php
More file actions
26 lines (26 loc) · 1002 Bytes
/
goals.php
File metadata and controls
26 lines (26 loc) · 1002 Bytes
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
<div id="timetracker-goals">
<h1 class='page-title'>Goals</h1>
<div id="client-input-container" class='center'>
<form>
<label for="project-select">
Project
<select id="project-select" style="width: 200px;">
</select>
</label>
<input tabindex="1" type="text" spellcheck="false" autocomplete="off" class="" value="" placeholder="# hours" id="new-goal-hours">
<label for="new-goal-interval">
<select id="new-goal-interval" style="width: 200px;">
<option value="Weekly">Weekly</option>
<option value="Monthly">Monthly</option>
</select>
</label>
<input type="submit" value="Add goal" id="new-goal-submit" class='ui-button primary'>
</form>
</div>
<div id="dialog-confirm" title="Confirmation Required" class='hidden'>
Are you sure you want to delete this goal?
</div>
<div class="clearfix"> </div>
<div id="goals">
</div>
</div>