-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (75 loc) · 2.94 KB
/
Copy pathindex.html
File metadata and controls
75 lines (75 loc) · 2.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="author" content="">
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.0/css/bootstrap.min.css"
integrity="sha384-SI27wrMjH3ZZ89r4o+fGIJtnzkAnFs3E4qz9DIYioCQ5l9Rd/7UAa8DHcaL8jkWt"
crossorigin="anonymous"
>
<link rel="stylesheet" href="template/css/main.css">
</head>
<body>
<form action="template/php/createDiagram.php" method="post">
<input type="hidden" name="estimatedEffort[]" value="Estimated effort" hidden>
<input type="hidden" name="timeSpent[]" value="Effort" hidden>
<div class="col-5">
<label>
<input type="text" name="project" placeholder="Project" required>
</label>
</div>
<br>
<div class="recordset">
<div class="col-5">
<label>
<input type="number" name="ticketId[]" placeholder="Ticket number" required />
</label>
</div>
<div class="col-5">
<label>
<input type="text" name="description[]" placeholder="Description" required />
</label>
</div>
<div class="col-5">
<label>
<input type="text" name="assignedTo[]" placeholder="Assigned to" required>
</label>
</div>
<div class="col-5">
<label>
<input type="number" name="estimatedEffort[]" placeholder="Estimated effort" step="0.01" required>
</label>
</div>
<div class="col-5">
<label>
<input type="number" name="timeSpent[]" placeholder="Effort" step="0.01" required>
</label>
</div>
<div class="col-5">
<label>
<img src="template/img/remove.png" class="remove">
</label>
</div>
</div>
<div class="col-submit">
<label>
<img src="template/img/add.png" class="add">
</label>
</div>
<div class="col-submit">
<button type="submit">Create diagram</button>
</div>
</form>
<script
src="https://code.jquery.com/jquery-3.5.1.min.js"
integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0="
crossorigin="anonymous"
></script>
<script src="template/js/app.js"></script>
</body>
</html>