wip
This commit is contained in:
@@ -11,8 +11,7 @@ import Footer, { messages as footerMessages } from '@edx/frontend-component-foot
|
||||
|
||||
import configureStore from './data/configureStore';
|
||||
import AccountSettingsPage, { NotFoundPage } from './account-settings';
|
||||
import LoginPage from './login';
|
||||
import RegistrationPage from './registration';
|
||||
import { LoginPage, RegistrationPage } from './registration';
|
||||
import appMessages from './i18n';
|
||||
|
||||
import './index.scss';
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
import React from 'react';
|
||||
import EmailField from '../account-settings/EmailField';
|
||||
|
||||
export default () => <EmailField />;
|
||||
@@ -1 +0,0 @@
|
||||
export { default } from './LoginPage';
|
||||
18
src/registration/LoginPage.jsx
Normal file
18
src/registration/LoginPage.jsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import React from 'react';
|
||||
import { Input } from '@edx/paragon';
|
||||
|
||||
|
||||
export default () => (
|
||||
<div className="form-group">
|
||||
<div className="d-flex align-items-start">
|
||||
<h6 aria-level="3">Password</h6>
|
||||
<Input
|
||||
name={name}
|
||||
id={id}
|
||||
type="email"
|
||||
value={value}
|
||||
onChange={handleChange}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
@@ -1 +1,3 @@
|
||||
export { default } from './RegistrationPage';
|
||||
export { LoginPage } from './LoginPage';
|
||||
export { RegistrationPage } from './RegistrationPage';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user