From 7883ba5c7775c1bb4138ea839970a2e0543ad9ae Mon Sep 17 00:00:00 2001 From: Rick Reilly Date: Wed, 12 Feb 2020 16:52:36 -0500 Subject: [PATCH] wip --- src/registration/LoginPage.jsx | 81 ++++++++++++++++++---------------- src/registration/_style.scss | 25 +++++++++++ 2 files changed, 67 insertions(+), 39 deletions(-) diff --git a/src/registration/LoginPage.jsx b/src/registration/LoginPage.jsx index b28411f..d5d925e 100644 --- a/src/registration/LoginPage.jsx +++ b/src/registration/LoginPage.jsx @@ -1,5 +1,5 @@ import React from 'react'; -import { Input } from '@edx/paragon'; +import { Button, Input } from '@edx/paragon'; import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { faFacebookF, faGoogle, faMicrosoft } from '@fortawesome/free-brands-svg-icons'; @@ -23,45 +23,48 @@ export default class LoginPage extends React.Component { render() { return ( -
-
-

First time here?

- Create an account! -
-
-
-

Sign In

-
- - -
-

The email address you used to register with edX.

-
- - -
+
+
+
+

First time here?

+ Create an account! +
+ +
+

Sign In

+
+ + +
+

The email address you used to register with edX.

+
+ + +
+
+ + +
+

or sign in with

+
+
+ + +
- -
-

or sign in with

-
-
- - -
); diff --git a/src/registration/_style.scss b/src/registration/_style.scss index 38cc39d..6e5a23f 100644 --- a/src/registration/_style.scss +++ b/src/registration/_style.scss @@ -36,3 +36,28 @@ form:nth-child(n) { margin: 1rem; } + +.section-heading-line{ + position: relative; + text-align: center; + + &:before { + content: ''; + position: absolute; + left: 0; + top: 50%; + width: 20%; + background-color: gray; + height: 1px; + } + + &:after { + content: ''; + position: absolute; + right: 0; + top: 50%; + width: 20%; + background-color: gray; + height: 1px; + } +} \ No newline at end of file