Commit 10fbd487 authored by Bilal's avatar Bilal

Fixed html violations

parent 5413ec8a
......@@ -165,6 +165,7 @@ const TelepayForm = () => {
<TextField
id='address'
label='Address'
autoComplete='address'
placeholder='Enter your address'
variant='outlined'
fullWidth
......@@ -218,6 +219,7 @@ const TelepayForm = () => {
label='Country'
placeholder='Enter your country'
variant='outlined'
autoComplete='country'
fullWidth
value={formData.country}
onChange={(e) => handleChange('country', e.target.value)}
......@@ -235,6 +237,7 @@ const TelepayForm = () => {
label='Email'
placeholder='Enter your email'
variant='outlined'
autoComplete='email'
fullWidth
value={formData.email}
type='email'
......@@ -252,6 +255,7 @@ const TelepayForm = () => {
id='phone'
label='Phone'
placeholder='Enter your phone number'
autoComplete='phone'
variant='outlined'
fullWidth
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