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 231f8a1..68313a9 100644 --- a/src/registration/_style.scss +++ b/src/registration/_style.scss @@ -37,3 +37,28 @@ display: inherit; margin: 0 auto; } + +.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