fix: add agreement to signup
This commit is contained in:
@@ -5,7 +5,7 @@
|
|||||||
Personal Journaling Platform
|
Personal Journaling Platform
|
||||||
</h2>
|
</h2>
|
||||||
|
|
||||||
Sol Journal is a simple, minimal, journaling platform that works offline and across all devices. It can be self-hosted through Firebase and then installed as a PWA, on mobile devices for easy access on a phone, or on Desktops.
|
Sol Journal is a simple, minimal, journaling platform that works offline and across all devices. It can be hosted yourself on Firebase and then installed as a PWA, on mobile devices for easy access on a phone, or on Desktops.
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<img
|
<img
|
||||||
@@ -104,12 +104,12 @@ To create an optimized build of the site run this command:
|
|||||||
gatsby build
|
gatsby build
|
||||||
```
|
```
|
||||||
|
|
||||||
A `/build` folder will be assembled that can be deployed to any static file hosting service like Netlify or surge.
|
A `/public` folder will be assembled that can be deployed to any static file hosting service like Netlify or surge.
|
||||||
|
|
||||||
It can be deployed to firebase with this command:
|
It can be deployed to firebase with this command:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
firebase deploy
|
firebase deploy -p public
|
||||||
```
|
```
|
||||||
|
|
||||||
## Inspiration
|
## Inspiration
|
||||||
|
|||||||
@@ -28,6 +28,12 @@ const RegisterPage = ({ theme }) => (
|
|||||||
<FirebaseContext.Consumer>
|
<FirebaseContext.Consumer>
|
||||||
{firebase => <RegisterForm firebase={firebase} />}
|
{firebase => <RegisterForm firebase={firebase} />}
|
||||||
</FirebaseContext.Consumer>
|
</FirebaseContext.Consumer>
|
||||||
|
<P colors={theme.colors} style={{ fontStyle: "italic" }}>
|
||||||
|
By registering for this site you are agreeing to the{" "}
|
||||||
|
<Link style={{ color: theme.colors.primary }} to={"/terms"}>
|
||||||
|
Terms of Service
|
||||||
|
</Link>
|
||||||
|
</P>
|
||||||
<P colors={theme.colors} style={{ fontStyle: "italic" }}>
|
<P colors={theme.colors} style={{ fontStyle: "italic" }}>
|
||||||
Already have an account?{" "}
|
Already have an account?{" "}
|
||||||
<Link style={{ color: theme.colors.primary }} to={"/login"}>
|
<Link style={{ color: theme.colors.primary }} to={"/login"}>
|
||||||
|
|||||||
Reference in New Issue
Block a user