-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.31 KB
/
index.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
<html>
<head>
<title>Asana Task Manager</title>
<link rel="stylesheet" href="css/home.css"/>
</head>
<body>
<form id="task-assigned">
<h1 id="employee-head">Employees</h1>
<!-- This is where the names get populated -->
<div id="employee-names"></div>
<h1 id="assignment-head">Task</h1>
<!-- Textboxes for assignment details -->
<div id="assignment">
<input id="assignment-name" type="text" placeholder="Assignment Name"><br><br>
<textarea id="assignment-notes" type="text" placeholder="Notes"></textarea>
<div id="status">
<br>
<!--Status defaults to 'inbox' -->
<input name="status" type="radio" value="later"> Later
<input name="status" type="radio" value="today"> Today
<input name="status" type="radio" value="upcoming"> Upcoming
</div>
</div>
<div id="due">
<h1>Due Date</h1>
<!-- Optional due date information -->
<input id="due-date" type="date"><b> (optional if due today)</b><br><br>
<input id="due-time" type="time"><b> (optional time)</b>
</div>
<input id="submit" type="submit">
</form>
<script src="js/assets/jquery-2.1.3.min.js" type="text/javascript"></script>
<script src="js/assets/jquery-2.1.3.js" type="text/javascript"></script>
<script src="js/home.js" type="text/javascript"></script>
</body>
</html>