added update profile endpoint

This commit was merged in pull request #104.
This commit is contained in:
victorAnumudu
2025-11-27 21:27:03 +01:00
parent f0382cea9e
commit 92ac7d74f4
7 changed files with 347 additions and 171 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ const validationSchema = Yup.object().shape({
// "Invalid email format"
// )
.min(3, "Minimum 3 characters")
.max(50, "Maximum 50 characters")
.max(25, "Maximum 25 characters")
.required("Email is required"),
})
@@ -66,7 +66,7 @@ export default function Forgetpwd2() {
<>
<div className="col-12">
<div className="form-group">
<label className={`text-black fw-bold control-label ${(props.errors.username && props.touched.username) && 'text-danger'}`}>Username*</label>
<label className={`text-black fw-bold control-label`}>Username* <span className='text-danger' style={{fontSize: '12px'}}>{(props.errors.username && props.touched.username) && props.errors.username}</span></label>
<input type="text" name='username' className="form-control" placeholder="Username" value={props.values.username} onChange={props.handleChange} />
</div>
</div>