-
Notifications
You must be signed in to change notification settings - Fork 0
/
customerPostaList.html
60 lines (36 loc) · 1.66 KB
/
customerPostaList.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'>
<title> Create New List </title>
</head>
<body>
<br><br>
<div class='col-md-10 col-md-offset-0'>
<div class='container'>
<form class='form-postList' method='POST'>
<h2 class='form-postList-heading'>Create a new list : </h2>
<div class='input-group'>
<span class='input-group-addon' id='basic-addon1'>Start time :</span>
<input type='text' name='startTime' class='form-control' placeholder='Start time' required>
</div>
<div class='input-group'>
<span class='input-group-addon' id='basic-addon1'>End time :</span>
<input type='text' name='endTime' class='form-control' placeholder='End time' required>
</div>
<div class='input-group'>
<span class='input-group-addon' id='basic-addon3'>Location :</span>
<input type='text' name='location' class='form-control' placeholder='Location' required>
</div>
<div class='input-group'>
<span class='input-group-addon' id='basic-addon6'>Discription :</span>
<input type='text' name='description' class='form-control' placeholder='discription' required>
</div>
<div>
<button class='btn btn-lg btn-primary btn-block' type='submit'>POST</button>
</div>
</form>
</div>
<p> Click <a href='./customerHomepage.php'>here</a> Go back to profile</p>
</body>
</html>