Commit 10fbd487 authored by Bilal's avatar Bilal

Fixed html violations

parent 5413ec8a
...@@ -165,6 +165,7 @@ const TelepayForm = () => { ...@@ -165,6 +165,7 @@ const TelepayForm = () => {
<TextField <TextField
id='address' id='address'
label='Address' label='Address'
autoComplete='address'
placeholder='Enter your address' placeholder='Enter your address'
variant='outlined' variant='outlined'
fullWidth fullWidth
...@@ -218,6 +219,7 @@ const TelepayForm = () => { ...@@ -218,6 +219,7 @@ const TelepayForm = () => {
label='Country' label='Country'
placeholder='Enter your country' placeholder='Enter your country'
variant='outlined' variant='outlined'
autoComplete='country'
fullWidth fullWidth
value={formData.country} value={formData.country}
onChange={(e) => handleChange('country', e.target.value)} onChange={(e) => handleChange('country', e.target.value)}
...@@ -235,6 +237,7 @@ const TelepayForm = () => { ...@@ -235,6 +237,7 @@ const TelepayForm = () => {
label='Email' label='Email'
placeholder='Enter your email' placeholder='Enter your email'
variant='outlined' variant='outlined'
autoComplete='email'
fullWidth fullWidth
value={formData.email} value={formData.email}
type='email' type='email'
...@@ -252,6 +255,7 @@ const TelepayForm = () => { ...@@ -252,6 +255,7 @@ const TelepayForm = () => {
id='phone' id='phone'
label='Phone' label='Phone'
placeholder='Enter your phone number' placeholder='Enter your phone number'
autoComplete='phone'
variant='outlined' variant='outlined'
fullWidth fullWidth
value={formData.phone} value={formData.phone}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment