blob: e5c1652c270e1cb9e846eb2e8730e6886c4ad10f (
plain) (
blame)
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
import React from "react";
export function NewToDo() {
return (
<>
<div className="container mt-3 mb-3">
<button
type="button"
className="btn btn-outline-dark"
data-bs-toggle="modal"
data-bs-target="#NewToDo"
>
+ New To Do
</button>
</div>
<div
className="modal fade"
id="NewToDo"
tabIndex="-1"
role="dialog"
aria-labelledby="New To Do Window"
aria-hidden="true"
>
<div
className="modal-dialog modal-dialog-centered"
role="document"
>
<div className="modal-content">
<div className="modal-header">
<h5
className="modal-title"
id="exampleModalLongTitle"
>
Add a new to do
</h5>
<button
type="button"
className="close"
data-bs-dismiss="modal"
aria-label="Close"
>
<span aria-hidden="true">×</span>
</button>
</div>
<div className="modal-body">
<form>
<div className="form-floating mb-3">
<input
className="form-control"
id="new-todo-id"
value="4"
disabled
/>
<label htmlFor="floatingInput">ID</label>
</div>
<div className="form-floating mb-3">
<input
className="form-control"
placeholder="Text"
id="new-todo-text"
/>
<label htmlFor="floatingInput">Text</label>
</div>
<div className="input-group mb-3">
<span className="input-group-text">
<i className="fa-regular fa-calendar"></i>
</span>
<div className="form-floating">
<input
className="form-control"
id="new-todo-due-date"
name="new-todo-due-date"
placeholder="Due date"
/>
<label htmlFor="floatingInput">
Due Date
</label>
</div>
</div>
<div class="form-check mb-3">
<input
class="form-check-input"
type="checkbox"
value=""
id="flexCheckDefault"
/>
<label
class="form-check-label"
for="flexCheckDefault"
>
Done
</label>
</div>
<div class="form-floating mb-3">
<select
class="form-select"
id="floatingSelect"
aria-label="Floating label select example"
>
<option selected>Low</option>
<option value="1">Medium</option>
<option value="2">High</option>
</select>
<label for="floatingSelect">Priority</label>
</div>
</form>
</div>
<div className="modal-footer">
<button
type="button"
className="btn btn-secondary"
data-bs-dismiss="modal"
>
Cancel
</button>
<button type="button" className="btn btn-primary">
Add
</button>
</div>
</div>
</div>
</div>
</>
);
}
|