mirror of https://gitlab.com/ecentrics/concordia
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
530 B
20 lines
530 B
import React, { Component } from 'react'
|
|
import SignUpFormContainer from '../../ui/signupform/SignUpFormContainer'
|
|
|
|
class SignUp extends Component {
|
|
render() {
|
|
return(
|
|
<main className="container">
|
|
<div className="pure-g">
|
|
<div className="pure-u-1-1">
|
|
<h1>Sign Up</h1>
|
|
<p>We've got your wallet information, simply input your name and your account is made!</p>
|
|
<SignUpFormContainer />
|
|
</div>
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default SignUp
|
|
|