diff --git a/src/backends/test-repo/AuthenticationPage.js b/src/backends/test-repo/AuthenticationPage.js index a6f2e130..6d2535d9 100644 --- a/src/backends/test-repo/AuthenticationPage.js +++ b/src/backends/test-repo/AuthenticationPage.js @@ -1,29 +1,45 @@ import React from 'react'; +import Input from "react-toolbox/lib/input"; +import Button from "react-toolbox/lib/button"; +import { Card, Icon } from "../../components/UI"; +import logo from "../netlify-auth/netlify_logo.svg"; +import styles from "../netlify-auth/AuthenticationPage.css"; export default class AuthenticationPage extends React.Component { static propTypes = { - onLogin: React.PropTypes.func.isRequired + onLogin: React.PropTypes.func.isRequired, }; state = { email: '' }; - handleLogin = e => { + handleLogin = (e) => { e.preventDefault(); this.props.onLogin(this.state); }; - handleEmailChange = e => { + handleEmailChange = (e) => { this.setState({ email: e.target.value }); }; render() { - return
; + return (