|
| 1 | +import React from "react"; |
| 2 | +import withStyles from "@material-ui/core/styles/withStyles"; |
| 3 | +// import Typography from "@material-ui/core/Typography"; |
| 4 | +// import Avatar from "@material-ui/core/Avatar"; |
| 5 | +// import FormControl from "@material-ui/core/FormControl"; |
| 6 | +// import Paper from "@material-ui/core/Paper"; |
| 7 | +// import Input from "@material-ui/core/Input"; |
| 8 | +// import InputLabel from "@material-ui/core/InputLabel"; |
| 9 | +// import Button from "@material-ui/core/Button"; |
| 10 | +// import Dialog from "@material-ui/core/Dialog"; |
| 11 | +// import DialogActions from "@material-ui/core/DialogActions"; |
| 12 | +// import DialogContent from "@material-ui/core/DialogContent"; |
| 13 | +// import DialogContentText from "@material-ui/core/DialogContentText"; |
| 14 | +// import DialogTitle from "@material-ui/core/DialogTitle"; |
| 15 | +// import Slide from "@material-ui/core/Slide"; |
| 16 | +// import Gavel from "@material-ui/icons/Gavel"; |
| 17 | +// import VerifiedUserTwoTone from "@material-ui/icons/VerifiedUserTwoTone"; |
| 18 | + |
| 19 | +const Register = ({ classes }) => { |
| 20 | + return <div>Register</div>; |
| 21 | +}; |
| 22 | + |
| 23 | +const styles = theme => ({ |
| 24 | + root: { |
| 25 | + width: "auto", |
| 26 | + display: "block", |
| 27 | + marginLeft: theme.spacing.unit * 3, |
| 28 | + marginRight: theme.spacing.unit * 3, |
| 29 | + [theme.breakpoints.up("md")]: { |
| 30 | + width: 400, |
| 31 | + marginLeft: "auto", |
| 32 | + marginRight: "auto" |
| 33 | + } |
| 34 | + }, |
| 35 | + paper: { |
| 36 | + marginTop: theme.spacing.unit * 8, |
| 37 | + display: "flex", |
| 38 | + flexDirection: "column", |
| 39 | + alignItems: "center", |
| 40 | + padding: theme.spacing.unit * 2 |
| 41 | + }, |
| 42 | + title: { |
| 43 | + marginTop: theme.spacing.unit * 2, |
| 44 | + color: theme.palette.openTitle |
| 45 | + }, |
| 46 | + avatar: { |
| 47 | + margin: theme.spacing.unit, |
| 48 | + backgroundColor: theme.palette.secondary.main |
| 49 | + }, |
| 50 | + form: { |
| 51 | + width: "100%", |
| 52 | + marginTop: theme.spacing.unit |
| 53 | + }, |
| 54 | + submit: { |
| 55 | + marginTop: theme.spacing.unit * 2, |
| 56 | + marginBottom: theme.spacing.unit * 2 |
| 57 | + }, |
| 58 | + icon: { |
| 59 | + padding: "0px 2px 2px 0px", |
| 60 | + verticalAlign: "middle", |
| 61 | + color: "green" |
| 62 | + } |
| 63 | +}); |
| 64 | + |
| 65 | +export default withStyles(styles)(Register); |
0 commit comments