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'; -