-
Notifications
You must be signed in to change notification settings - Fork 0
/
createTask.php
63 lines (61 loc) · 2.4 KB
/
createTask.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
<!-- THIS IS THE FIRST PAGE SOMEONE WOULD ENCOUNTER -->
<!-- IF YOU ARE NOT YET A REGISTERED USER THEN IT WILL BRING YOU TO A PAGE THAT WILL ASK YOU TO FILL OUT SOME INFO -->
<!-- CSS: ./homeOne.css -->
<!-- MAKE SURE CSS AND HTML ARE IN SAME FOLDER -->
<html>
<head>
<title> idk </title>
<link rel = "stylesheet" type = "text/css" href ="./general.css" />
<link rel = "stylesheet" type = "text/css" href = "./createTask.css" />
<script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"> </script>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,100,200,300,500,700,600,800,900' rel='stylesheet' type='text/css'>
<script src = "./createTask.js"> </script>
</head>
<body onload = "listPopulater()" >
<div id="container">
<div id="header">
<div id="pageTitle">
<h1>FreeTime</h1>
</div>
</div>
<!-- Header end -->
<div id="howItWorks">
<h2>How FreeTime works</h2>
<p>Now that you have logged in you can either create a new task or join an existing task. If you are creating a new task please select a start and end date for when you would like to meet with your group. Once you finish creating a new task you can send it to your group members so they can fill out their availability. If one of your group members has aslready made a task then select your availibility during that period of time.</p>
</div>
<div id="newTask">
<h2>Create New Task</h2>
<form action="#">
<div id="startDate">
<p>Please select earliest Free Time:</p>
<select name="newTaskStartMonth" id = "userMonth">
</select>
<select name="newTaskStartDay" id = "userDay">
</select>
<!-- New Task Start Date End -->
</div>
<div id="endDate">
<p>Please select latest Free Time:</p>
<select name="newTaskEndMonth" id = "userMonthAgain">
</select>
<select name="newTaskEndDay" id = "userDayAgain">
</select>
</div>
<input type="submit" value="Submit"/>
</form>
<!-- New Task End -->
<form action="#">
</form>
</div>
<div id="existingTask">
<h2>Join Existing Task</h2>
</div>
<footer>
<a class="resume" href="facebook.com"><img src="./resume.png"/></a>
<a class="resume" href="facebook.com"><img src="./resume.png"/></a>
<p>Thomas Hammons & Emma Phillips © 2016</p>
</footer>
</div>
<!-- Container end -->
</body>
</html>