From c064f7f4135dd1afeff16074329c4f6acb22c297 Mon Sep 17 00:00:00 2001 From: Rick Reilly Date: Wed, 12 Feb 2020 15:20:12 -0500 Subject: [PATCH] wip --- src/registration/LoginPage.jsx | 79 ++++++++++++++++++++++++++++------ src/registration/index.js | 1 - 2 files changed, 65 insertions(+), 15 deletions(-) diff --git a/src/registration/LoginPage.jsx b/src/registration/LoginPage.jsx index c6c50aa..b28411f 100644 --- a/src/registration/LoginPage.jsx +++ b/src/registration/LoginPage.jsx @@ -1,18 +1,69 @@ import React from 'react'; import { Input } from '@edx/paragon'; +import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; +import { faFacebookF, faGoogle, faMicrosoft } from '@fortawesome/free-brands-svg-icons'; +export default class LoginPage extends React.Component { + state = { + password: '', + username: '', + } -export default () => ( -
-
-
Password
- -
-
-); + handlePasswordChange(e) { + this.setState({ + password: e.target.value, + }); + } + + handleUsernameChange(e) { + this.setState({ + username: e.target.value, + }); + } + + render() { + return ( +
+
+

First time here?

+ Create an account! +
+
+
+

Sign In

+
+ + +
+

The email address you used to register with edX.

+
+ + +
+
+
+
+

or sign in with

+
+
+ + + +
+
+ ); + } +} diff --git a/src/registration/index.js b/src/registration/index.js index 3df21c4..76499ae 100644 --- a/src/registration/index.js +++ b/src/registration/index.js @@ -1,3 +1,2 @@ export { LoginPage } from './LoginPage'; export { RegistrationPage } from './RegistrationPage'; -