-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added Prelogin component and test cases
- Loading branch information
1 parent
2de4cd6
commit ce80211
Showing
8 changed files
with
27 additions
and
59 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
26 changes: 0 additions & 26 deletions
26
react-frontend/src/featurewise-directories/login/PreLoginPanelMobileComponent.js
This file was deleted.
Oops, something went wrong.
24 changes: 0 additions & 24 deletions
24
react-frontend/src/layout-components/login/PreLoginPanelMobileComponent.js
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import React from "react"; | ||
import { Container, Row } from "react-bootstrap"; | ||
import LogoComponent from "shared-components/peerly-Logo/LogoComponent"; | ||
import LoginTextComponent from "shared-components/login-text-component/LoginTextComponent"; | ||
import PreLoginImageComponent from "shared-components/prelogin-image-components/PreLoginImageComponent"; | ||
|
||
const PreLoginPanelMobileComponent = () => ( | ||
<Container className="bg-dark w-100" fluid={true}> | ||
<Row className="h-25 py-5"> | ||
<LogoComponent className="text-white" /> | ||
</Row> | ||
<Row className="h-50"> | ||
<PreLoginImageComponent className="w-100 img-fluid" /> | ||
</Row> | ||
<Row className="h-25 py-5"> | ||
<LoginTextComponent /> | ||
</Row> | ||
</Container> | ||
); | ||
|
||
export default PreLoginPanelMobileComponent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters