Added link to landing page
This commit is contained in:
parent
155e5e6e0b
commit
00471abee4
1 changed files with 34 additions and 27 deletions
|
|
@ -1,6 +1,7 @@
|
||||||
---
|
---
|
||||||
import Layout from '../layouts/Layout.astro'
|
import Layout from '../layouts/Layout.astro'
|
||||||
import { Button, Logo, Link, Page, Footer, Row, Column, Image, Copyright, OptimizeLogo, Display, Padding } from '../../fwt/'
|
import { Button, Logo, Link, Box, Page, Form, Row, Column, Image, Copyright, OptimizeLogo, Display, Padding } from '../../fwt/'
|
||||||
|
import RegistrationForm from '../components/RegistrationForm/RegistrantionForm'
|
||||||
---
|
---
|
||||||
|
|
||||||
<Layout title="Register - OCBO e-Sign">
|
<Layout title="Register - OCBO e-Sign">
|
||||||
|
|
@ -8,38 +9,44 @@ import { Button, Logo, Link, Page, Footer, Row, Column, Image, Copyright, Optimi
|
||||||
<Padding left={4.75} right={4.75}>
|
<Padding left={4.75} right={4.75}>
|
||||||
<Display desktop tablet>
|
<Display desktop tablet>
|
||||||
<Row content="split">
|
<Row content="split">
|
||||||
<Row content="left" gap={2}>
|
<Link to="/">
|
||||||
<Logo size={200} />
|
<Row content="left" gap={2}>
|
||||||
<h1>OCBO e-Sign</h1>
|
<Logo size={200} />
|
||||||
</Row>
|
<h1>OCBO e-Sign</h1>
|
||||||
|
</Row>
|
||||||
|
</Link>
|
||||||
|
|
||||||
<Button label="Register" edges="curved" to="/main" />
|
<Button label="Register" edges="curved" to="/main" />
|
||||||
</Row>
|
</Row>
|
||||||
</Display>
|
|
||||||
|
|
||||||
<Display mobile>
|
<Display mobile>
|
||||||
<Column content="center">
|
<Column content="center">
|
||||||
<Logo size={120} />
|
<Link to="/">
|
||||||
<h1>OCBO e-Sign</h1>
|
<Logo size={120} />
|
||||||
|
<h1>OCBO e-Sign</h1>
|
||||||
|
</Link>
|
||||||
|
|
||||||
<Button label="Register" edges="curved" to="/main" />
|
<Button label="Register" edges="curved" to="/main" />
|
||||||
</Column>
|
</Column>
|
||||||
|
</Display>
|
||||||
|
|
||||||
|
<RegistrationForm />
|
||||||
</Display>
|
</Display>
|
||||||
</Padding>
|
</Padding>
|
||||||
|
|
||||||
|
<style lang="sass">
|
||||||
|
@use '/src/styles/variables.sass' as vars
|
||||||
|
@use '/src/styles/breakpoint.sass' as views
|
||||||
|
|
||||||
|
h1
|
||||||
|
font-size: 3.25rem
|
||||||
|
color: vars.$textColor
|
||||||
|
|
||||||
|
@media only screen and (max-width: views.$mobile)
|
||||||
|
font-size: 2.25rem
|
||||||
|
|
||||||
|
.div
|
||||||
|
width: 8rem
|
||||||
|
</style>
|
||||||
</Page>
|
</Page>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
|
||||||
<style lang="sass">
|
|
||||||
@use '/src/styles/variables.sass' as vars
|
|
||||||
@use '/src/styles/breakpoint.sass' as views
|
|
||||||
|
|
||||||
h1
|
|
||||||
font-size: 3.25rem
|
|
||||||
color: vars.$textColor
|
|
||||||
|
|
||||||
@media only screen and (max-width: views.$mobile)
|
|
||||||
font-size: 2.25rem
|
|
||||||
|
|
||||||
.div
|
|
||||||
width: 8rem
|
|
||||||
</style>
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue