-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtask-form.html
More file actions
53 lines (47 loc) · 2.5 KB
/
task-form.html
File metadata and controls
53 lines (47 loc) · 2.5 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Task Form</title>
<link href="css/form.css" rel="stylesheet">
<link href="css/header.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
</head>
<body>
<div class="header">
<img src="images/project_logo.png">
<a href="dashboard.html"><button>Goalify</button></a>
<a href="dashboard.html"><button>Dashboard</button></a>
<a href="planner.html"><button>Planner</button></a>
<a href="index.html" class="login-button"><button>Log Out</button></a>
<!--<a href="#"><li>Settings</li></a>-->
<!--<a href="#"><li>Log In</li></a>-->
</div>
<div class="formular">
<h2 style="font-size:30px; text-shadow: 3px 2px 2px #b9b9b985;">Create Task:</h2>
<form action="planner.html">
<br>
<label for="forname" style="text-shadow: 3px 2px 2px #b9b9b985;">Name:</label>
<input type="text" id="gname" name="goalname" style="box-shadow: 2px 3px 5px 1px #bab7b785;" placeholder="Name your task">
<br>
<label for="type">Assign to Goal:</label>
<select id="type" name="type" style="box-shadow: 2px 3px 5px 1px #bab7b785; text-shadow: 3px 2px 2px #b9b9b985;">
<option value="Goal 1">Goal 1</option>
<option value="Goal 2">Goal 2</option>
<option value="Goal 3">Goal 3</option>
</select>
<br>
<label for="gdescription" style="text-shadow: 3px 2px 2px #b9b9b985;">Task details:</label>
<input type="text" id="gdescription" name="goaldescription" style="box-shadow: 2px 3px 5px 1px #bab7b785;" placeholder="Description">
<br>
<label for="duedate" style="margin-top:6px; text-shadow: 3px 2px 2px #b9b9b985;">Due date:</label>
<br>
<input type="date" id="duedate" name="duedate" style="padding:7px; margin-top:7px; font-family:Arial, Helvetica, sans-serif; border-radius: 4px; border: 1px solid #ccc; box-shadow: 2px 3px 5px 1px #bab7b785;">
<br><br>
<input type="submit" value="Submit" style="box-shadow: 2px 3px 5px 1px #bab7b785; text-shadow: 3px 2px 2px #b9b9b985; background: #295ad4; float: right;">
</form>
</div>
</body>
</html>