Created
October 7, 2019 04:14
-
-
Save ryanbelke/a51f5ceb137f9b0f940f9b682f0abe28 to your computer and use it in GitHub Desktop.
/pages/signup.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* /pages/signup.js */ | |
import React, { useState } from "react"; | |
import { | |
Container, | |
Row, | |
Col, | |
Button, | |
Form, | |
FormGroup, | |
Label, | |
Input | |
} from "reactstrap"; | |
import { registerUser } from "../lib/auth"; | |
const SignUp = () => { | |
const [data, setData] = useState({ email: "", username: "", password: "" }); | |
const [loading, setLoading] = useState(false); | |
const [error, setError] = useState({}); | |
return ( | |
<Container> | |
<Row> | |
<Col sm="12" md={{ size: 5, offset: 3 }}> | |
<div className="paper"> | |
<div className="header"> | |
<img src="https://strapi.io/assets/images/logo.png" /> | |
</div> | |
<section className="wrapper"> | |
{Object.entries(error).length !== 0 && | |
error.constructor === Object && | |
error.message.map(error => { | |
return ( | |
<div | |
key={error.messages[0].id} | |
style={{ marginBottom: 10 }} | |
> | |
<small style={{ color: "red" }}> | |
{error.messages[0].message} | |
</small> | |
</div> | |
); | |
})} | |
<Form> | |
<fieldset disabled={loading}> | |
<FormGroup> | |
<Label>Username:</Label> | |
<Input | |
disabled={loading} | |
onChange={e => | |
setData({ ...data, username: e.target.value }) | |
} | |
value={data.username} | |
type="text" | |
name="username" | |
style={{ height: 50, fontSize: "1.2em" }} | |
/> | |
</FormGroup> | |
<FormGroup> | |
<Label>Email:</Label> | |
<Input | |
onChange={e => | |
setData({ ...data, email: e.target.value }) | |
} | |
value={data.email} | |
type="email" | |
name="email" | |
style={{ height: 50, fontSize: "1.2em" }} | |
/> | |
</FormGroup> | |
<FormGroup style={{ marginBottom: 30 }}> | |
<Label>Password:</Label> | |
<Input | |
onChange={e => | |
setData({ ...data, password: e.target.value }) | |
} | |
value={data.password} | |
type="password" | |
name="password" | |
style={{ height: 50, fontSize: "1.2em" }} | |
/> | |
</FormGroup> | |
<FormGroup> | |
<span> | |
<a href=""> | |
<small>Forgot Password?</small> | |
</a> | |
</span> | |
<Button | |
style={{ float: "right", width: 120 }} | |
color="primary" | |
disabled={loading} | |
onClick={() => { | |
setLoading(true); | |
registerUser(data.username, data.email, data.password) | |
.then(() => setLoading(false)) | |
.catch(error => { | |
setError(error.response.data); | |
setLoading(false); | |
}); | |
}} | |
> | |
{loading ? "Loading.." : "Submit"} | |
</Button> | |
</FormGroup> | |
</fieldset> | |
</Form> | |
</section> | |
</div> | |
</Col> | |
</Row> | |
<style jsx> | |
{` | |
.paper { | |
border: 1px solid lightgray; | |
box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2), | |
0px 1px 1px 0px rgba(0, 0, 0, 0.14), | |
0px 2px 1px -1px rgba(0, 0, 0, 0.12); | |
border-radius: 6px; | |
margin-top: 90px; | |
} | |
.notification { | |
color: #ab003c; | |
} | |
.header { | |
width: 100%; | |
height: 120px; | |
background-color: #2196f3; | |
margin-bottom: 30px; | |
border-radius-top: 6px; | |
} | |
.wrapper { | |
padding: 10px 30px 20px 30px !important; | |
} | |
a { | |
color: blue !important; | |
} | |
img { | |
margin: 15px 30px 10px 50px; | |
} | |
`} | |
</style> | |
</Container> | |
); | |
}; | |
export default SignUp; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment