blob: 3b0de1e1f29301a3e2b68ec96ab81293dd1cfd41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
import React from 'react';
import Window from "../../components/Window/Window";
import ContentSection from "../../components/ContentSection/ContentSection";
import {
TextField,
Button,
Typography,
makeStyles,
} from "@material-ui/core";
const useStyles = makeStyles(theme => ({
primary: {
padding: theme.spacing(4)
},
}));
const Profile = () => {
const classes = useStyles();
return (
<>
<Window type="primary">
<div className={classes.primary}>
<ContentSection sectionName="Tell us who you are">
<p> Here is some text about why you should register at ChronoCube: </p>
<p>
<TextField variant="outlined" color="secondary" label="Username" />
</p>
<Button variant="contained" color="secondary" size="large">
Submit!
</Button>
</ContentSection>
</div>
</Window>
<Window type="secondary" name="History">
</Window>
</>
)
};
export default Profile;
|