From ec423572aaf8ecf80a409fd9a03d73b5d31e444f Mon Sep 17 00:00:00 2001 From: Blaster4385 Date: Sat, 13 Aug 2022 21:40:17 +0530 Subject: Implemented update UI --- client/src/pages/Update/Update.jsx | 51 +++++++++++++++++++++++++++++++++++++- 1 file changed, 50 insertions(+), 1 deletion(-) (limited to 'client/src/pages/Update/Update.jsx') diff --git a/client/src/pages/Update/Update.jsx b/client/src/pages/Update/Update.jsx index 0b448cf..69b9224 100644 --- a/client/src/pages/Update/Update.jsx +++ b/client/src/pages/Update/Update.jsx @@ -1,7 +1,56 @@ import React from 'react' +import { useNavigate } from 'react-router-dom' +import Header from '../../components/Header/Header' +import styles from './Update.module.css' +import Input from '../../components/Input/Input' +import { Grid, Button } from '@mui/material' const Update = () => { - return
Update
+ const navigate = useNavigate() + return ( + <>
+
+

Provide Aadhaar Number (UID):

+ + + + + + +
+
+

Enter OTP

+ + + + + + +
+ + ) } export default Update -- cgit