generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
80843a0
commit 9d0ab45
Showing
2 changed files
with
21 additions
and
41 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,11 @@ | ||
import {LRSFormAccordion} from "../../components/landing/LRSFormAccordion" | ||
import {Container, Row, Col} from 'react-bootstrap' | ||
import jsonforms from "./forms.json" | ||
import { FormFactory } from "../../helpers/factory/FormFactory" | ||
import {ResponsiveNavigationSidebar} from "../../components/navigation/ResponsiveNavigationSidebar" | ||
import { Container, Row, Col } from 'react-bootstrap' | ||
import { LoginPanel } from "../../components/landing/LoginPanel" | ||
|
||
const Landing = () =>{ | ||
const forms = FormFactory(jsonforms.forms) | ||
return( | ||
const Landing = () => { | ||
return ( | ||
<Container fluid className="landing-container mt-3" id="landing-container"> | ||
<LoginPanel/> | ||
{/* <Row id="responsive-lrs-nav" className=""> | ||
<Col className="col-12 col-md-3" > | ||
<ResponsiveNavigationSidebar/> | ||
</Col> | ||
<Col className="col-12 col-md-7"> | ||
<Row> | ||
<p className="h1">Sample Site Remediation Forms</p> | ||
</Row> | ||
<Row> | ||
{LRSFormAccordion(forms)} | ||
</Row> | ||
</Col> | ||
</Row> */} | ||
<LoginPanel /> | ||
{ } | ||
|
||
<Row> | ||
<Col className="col-12 col-sm-6 offset-sm-3"> | ||
|
@@ -41,18 +24,18 @@ const Landing = () =>{ | |
<p>These, as well as all other forms can be completed using the <a href="https://www2.gov.bc.ca/gov/content/environment/air-land-water/site-remediation/guidance-resources/forms">Site Remediation Forms</a></p> | ||
</Col> | ||
|
||
|
||
<Col className="col-12 col-sm-6 offset-sm-3 small"> | ||
<hr /> | ||
<p>Collection Notice for Environmental Protection Platform:</p> | ||
<p>Your personal information is collected under 26(c) of the Freedom of Information and Protection of Privacy Act for the purpose of accessing services of the Environmental Protection Division. If you have any questions about the collection of your information, please contact Site Remediation Services at <a href="mailto:[email protected]">[email protected]</a>.</p> | ||
<p>Collection Notice for Site Remediation Forms:</p> | ||
<p>Your personal information is collected under 26(c) of the Freedom of Information and Protection of Privacy Act for the purpose of receiving site remediation services. If you have any questions about the collection of your information, please contact Site Remediation Services at <a href="mailto:[email protected]">[email protected]</a></p> | ||
<p>Your personal information is collected under 26(c) of the Freedom of Information and Protection of Privacy Act for the purpose of receiving site remediation services. If you have any questions about the collection of your information, please contact Site Remediation Services at <a href="mailto:[email protected]">[email protected]</a></p> | ||
</Col> | ||
</Row> | ||
|
||
</Container> | ||
) | ||
) | ||
} | ||
|
||
|
||
|