import PropTypes from 'prop-types'; 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 "../git-gateway/netlify_logo.svg"; import styles from "../git-gateway/AuthenticationPage.css"; export default class AuthenticationPage extends React.Component { static propTypes = { onLogin: PropTypes.func.isRequired, }; state = { email: '' }; handleLogin = (e) => { e.preventDefault(); this.props.onLogin(this.state); }; handleEmailChange = (value) => { this.setState({ email: value }); }; render() { return (

This is a demo, enter your email to start

); } }