@@ -46,80 +46,80 @@ const App = () => {
4646 { /* <!-- First name input --> */ }
4747 < div class = "col" >
4848 < div class = "form-outline" >
49+ < label class = "form-label" for = "form6Example1" >
50+ First name
51+ </ label >
4952 < input
5053 type = "text"
5154 id = "form6Example1"
5255 class = "form-control"
5356 onChange = { nameFucn }
5457 value = { nameValue }
5558 />
56- < label class = "form-label" for = "form6Example1" >
57- First name
58- </ label >
5959 </ div >
6060 </ div >
6161
6262 { /* <!-- Last name input --> */ }
6363 < div class = "col" >
6464 < div class = "form-outline" >
65- < input type = "text" id = "form6Example2" class = "form-control" />
6665 < label class = "form-label" for = "form6Example2" >
6766 Last name
6867 </ label >
68+ < input type = "text" id = "form6Example2" class = "form-control" />
6969 </ div >
7070 </ div >
7171 </ div >
7272
7373 { /* <!-- Company name input --> */ }
7474 < div class = "form-outline mb-4" >
75- < input type = "text" id = "form6Example3" class = "form-control" />
7675 < label class = "form-label" for = "form6Example3" >
7776 Company name
7877 </ label >
78+ < input type = "text" id = "form6Example3" class = "form-control" />
7979 </ div >
8080
8181 { /* <!-- Address input --> */ }
8282 < div class = "form-outline mb-4" >
83- < input type = "text" id = "form6Example4" class = "form-control" />
8483 < label class = "form-label" for = "form6Example4" >
8584 Address
8685 </ label >
86+ < input type = "text" id = "form6Example4" class = "form-control" />
8787 </ div >
8888
8989 { /* <!-- Email input --> */ }
9090 < div class = "form-outline mb-4" >
91+ < label class = "form-label" for = "form6Example5" >
92+ Email
93+ </ label >
9194 < input
9295 type = "email"
9396 id = "form6Example5"
9497 class = "form-control"
9598 onChange = { emailFucn }
9699 value = { EmailValue }
97100 />
98- < label class = "form-label" for = "form6Example5" >
99- Email
100- </ label >
101101 </ div >
102102
103103 { /* <!-- Number input --> */ }
104104 < div class = "form-outline mb-4" >
105+ < label class = "form-label" for = "form6Example6" >
106+ Phone
107+ </ label >
105108 < input
106109 type = "number"
107110 id = "form6Example6"
108111 class = "form-control"
109112 onChange = { mobileFucn }
110113 value = { mobileValue }
111114 />
112- < label class = "form-label" for = "form6Example6" >
113- Phone
114- </ label >
115115 </ div >
116116
117117 { /* <!-- Message input --> */ }
118118 < div class = "form-outline mb-4" >
119- < textarea class = "form-control" id = "form6Example7" rows = "4" > </ textarea >
120119 < label class = "form-label" for = "form6Example7" >
121120 Additional information
122121 </ label >
122+ < textarea class = "form-control" id = "form6Example7" rows = "4" > </ textarea >
123123 </ div >
124124
125125 { /* <!-- Checkbox --> */ }
0 commit comments