blob: 7233581740e48cf5c9d4cdcc9d0b5366d5c2df6a (
plain)
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
|
import React from 'react'
import styles from './FormOne.module.css'
const FormOne = () => {
return (
<div className={styles.formone}>
<div className={styles.formone__radio}>
<span className={styles.formone__resident}>
<input
type="radio"
id="indian"
name="resident"
value="Indian Resident"
required
/>
<label htmlFor="indian">Indian Resident</label>
</span>
<span className={styles.formone__resident}>
<input
type="radio"
id="indian"
name="resident"
value="Indian Resident"
required
/>
<label htmlFor="indian">Non-Residential Indian</label>
</span>
</div>
<div className={styles.formone__fullname}>
<label htmlFor="fullName">Full Name</label>
<input
type="text"
id="fullName"
name="fullName"
value="Full Name"
required
/>
</div>
<div className={styles.formone__dob}>
<label htmlFor="dob">Date of Birth</label>
<input type="date" id="dob" name="dob" value="Date of Birth" required />
</div>
</div>
)
}
export default FormOne
|