2016-06-09 00:52:59 +00:00
|
|
|
import React from 'react'
|
|
|
|
|
|
|
|
class SignupView extends React.Component {
|
|
|
|
render() {
|
|
|
|
return (
|
2016-06-09 17:56:23 +00:00
|
|
|
<form onSubmit={this.handleSubmit()}>
|
2016-06-09 00:52:59 +00:00
|
|
|
<input type="text" placeholder="Username"/>
|
|
|
|
<input type="text" placeholder="Email"/>
|
|
|
|
<input type="password" placeholder="Password"/>
|
|
|
|
<input type="submit" value="Sign Up" />
|
|
|
|
</form>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default SignupView;
|