We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329db6e commit 25c9592Copy full SHA for 25c9592
src/components/Login/RegisterForm.tsx
@@ -23,15 +23,12 @@ const styles = () => ({
23
},
24
});
25
26
-function Copyright(props: any) {
+function Developer(props: any) {
27
return (
28
<Typography variant="body2" color="text.secondary" align="left" {...props}>
29
- {"Copyright © "}
30
- <Link color="inherit" href="https://mui.com/">
31
- Your Website
32
- </Link>{" "}
33
- {new Date().getFullYear()}
34
- {"."}
+ <Link color="inherit" href="https://kshitijraj.netlify.app/">
+ Click here for developer details.
+ </Link>
35
</Typography>
36
);
37
}
@@ -199,7 +196,7 @@ export const RegisterForm = ({
199
196
</Grid>
200
197
</Box>
201
198
202
- <Copyright sx={{ mt: 5 }} />
+ <Developer sx={{ mt: 5 }} />
203
</Container>
204
205
};
0 commit comments