File tree Expand file tree Collapse file tree 1 file changed +12
-14
lines changed
apps/OpenSign/src/components Expand file tree Collapse file tree 1 file changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -241,39 +241,37 @@ const AppendFormInForm = (props) => {
241
241
className = "px-3 py-2 w-full border-[1px] border-gray-300 rounded focus:outline-none text-xs"
242
242
/>
243
243
</ div >
244
-
245
244
< div className = "mb-3" >
246
245
< label
247
- htmlFor = "phone "
246
+ htmlFor = "email "
248
247
className = "block text-xs text-gray-700 font-semibold"
249
248
>
250
- Phone
249
+ Email
251
250
< span style = { { color : "red" , fontSize : 13 } } > *</ span >
252
251
</ label >
253
252
< input
254
- type = "text "
255
- id = "phone "
256
- value = { phone }
257
- onChange = { ( e ) => setPhone ( e . target . value ) }
253
+ type = "email "
254
+ id = "email "
255
+ value = { email }
256
+ onChange = { ( e ) => setEmail ( e . target . value ) }
258
257
required
259
258
disabled = { addYourself }
260
259
className = "px-3 py-2 w-full border-[1px] border-gray-300 rounded focus:outline-none text-xs"
261
260
/>
262
261
</ div >
263
-
264
262
< div className = "mb-3" >
265
263
< label
266
- htmlFor = "email "
264
+ htmlFor = "phone "
267
265
className = "block text-xs text-gray-700 font-semibold"
268
266
>
269
- Email
267
+ Phone
270
268
< span style = { { color : "red" , fontSize : 13 } } > *</ span >
271
269
</ label >
272
270
< input
273
- type = "email "
274
- id = "email "
275
- value = { email }
276
- onChange = { ( e ) => setEmail ( e . target . value ) }
271
+ type = "text "
272
+ id = "phone "
273
+ value = { phone }
274
+ onChange = { ( e ) => setPhone ( e . target . value ) }
277
275
required
278
276
disabled = { addYourself }
279
277
className = "px-3 py-2 w-full border-[1px] border-gray-300 rounded focus:outline-none text-xs"
You can’t perform that action at this time.
0 commit comments