-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaddTask.php
84 lines (58 loc) · 1.91 KB
/
addTask.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
72
73
74
75
76
77
78
79
80
81
82
83
84
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Add Officer</title>
<link href="resources/css/emp_style.css" rel="stylesheet" type="text/css">
<link href="resources/css/bootstrap.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Raleway" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
a { margin-left: 150px;}
.logo{margin-left: 00px;
margin-right: 10px;
margin-top: 10px;
margin-bottom: : 10px;
float: left;}
ul{margin-left: 150px;}
</style>
</head>
<body>
<div class="w3-container w3-black">
<ul>
<img class="logo" src="resources/img/logo2.png" width="100" alt="image" height="70">
</ul>
<h1>Task Manager</h1>
</div>
<form action="http://localhost:80/webTec_Pro/why.php" method="post">
<div id="maincont">
<br>
<div class="ki">
<textarea class="form-control" name="tasktitle" placeholder="Task title" rows="1" cols="50" required></textarea>
</div>
</div>
<br>
<div id="optionbar">
<div class="form-group">
<textarea class="form-control" name="description" placeholder="Task Description" rows="8" cols="50"></textarea>
</div>
<div class="kita">
<div class="input-group">
<input type="text" class="form-control" name="assign" placeholder="Assign To" aria-describedby="basic-addon2" required>
<span class="input-group-addon" id="basic-addon2">@gmail.com</span>
</div>
</div>
<ul>
<input type="submit" name="signUp" value="Submit" class="btn btn-success" />
</ul>
</ul>
</nav>
</div>
</form>
<div id="emp_messageform">
</div>
</div>
</body>
</html>