Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

copy fixes for register page #69

Merged
merged 1 commit into from
Nov 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion components/onboarding/Welcome.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export default function Welcome() {
}
}
return (
<div className="relative h-screen bg-gradient-to-br from-my-green via-ocean to-my-purple pt-12 px-12 text-left">
<div className="relative h-screen bg-login-gradient pt-12 px-12 text-left">
<Logo className="absolute top-0 -left-32 h-screen opacity-10 pointer-events-none" />
<div className="mb-12 text-white" >
<h2 className="text-3xl sm:text-2xl md:text-6xl lg:text-7xl font-bold">
Expand Down
23 changes: 16 additions & 7 deletions pages/privacy.jsx
Original file line number Diff line number Diff line change
@@ -1,14 +1,23 @@
import Nav from '../components/nav'

export default function PrivacyPage(){
export default function PrivacyPage() {
return (
<div className="page">
<Nav/>
<div className="flex flex-col text-center">
<h3 className="text-5xl my-12">privacy at itme.online</h3>
<div className="page bg-login-gradient text-white min-h-screen px-16">
<div className="flex flex-col text-center bg-login-gradient text-white min-h-full">
<h3 className="text-5xl my-12">Privacy at Mysilio Garden</h3>
<p className="text-2xl my-6">
itme.online doesn't store your data - everything you create here
is stored in your <a href="https://solidproject.org/">Solid Pod</a>.
Mysilio Garden doesn't store your data - everything you create here
is stored in your <a className="link" href="https://solidproject.org/">Solid POD</a>.
</p>
<p>
If you are using our POD hosting service (the default if you signed up with us),
we store your data in our servers. We will not sell or transfer your data without your
permission, and you are free to move your data to servers hosted by other parties
without discontinuing use of Mysilio Garden.
</p>
<p>
Support for data migration to a new POD is currently very limited - if you'd like to move your data
please reach out to us at <a className="link" href="mailto:hello@mysilio.com">hello@mysilio.com</a>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I actually migrated everyone from the old pod host because it was easier.

</p>
</div>
</div>
Expand Down
31 changes: 15 additions & 16 deletions pages/register.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,26 +27,25 @@ export default function RegistrationPage(){
console.log(result)
}
return (
<div className="text-center max-w-5xl mx-auto">
<Nav/>
<h3 className="text-3xl mb-3 text-gray-700">🌻🌿🌱 Welcome to Understory Garden! 🌱🌿🌻 </h3>
<h3 className="text-lg mb-3 text-gray-600">
You can create an Understory Garden account using the form below.
</h3>
<h3 className="text-lg mb-3 text-gray-600">
Understory Garden is currently in early alpha - we cannot make any guarantees about the stability of the service
<div className="text-center text-white w-full p-16 bg-login-gradient">
<h3 className="text-4xl mb-3">🌻🌿🌱 Welcome to Mysilio Garden! 🌱🌿🌻 </h3>
<p className="text-lg mb-3">
You can create an Mysilio Garden account using the form below.
</p>
<p className="text-lg mb-3">
Mysilio Garden is currently in early alpha - we cannot make any guarantees about the stability of the service
or the safety of your data. As a result, please treat this as a sandbox.
</h3>
<h3 className="text-lg mb-3 text-gray-600">
</p>
<p className="text-lg mb-3">
After signing up below, we'll send you a "magic login link" that will allow you to log into the service once. If you are
logged out, you'll be able to log back in using the login form on <a href="https://understory.garden">the home page</a> but
logged out, you'll be able to log back in using the login form on <a className="link" href="https://mysilio.garden">the home page</a> but
you will need to go through the "forgot password" flow before you'll be able to fully log in. We look forward to making
this user experience cleaner in the near future.
</h3>
<h3 className="text-lg text-gray-600 mb-12">By creating an account you agree to be bound by our <a href="/tos">Terms of Service</a></h3>.
<h3 className="text-3xl mb-6"> Create Your Account </h3>
</p>
<p className="text-lg mb-12">By creating an account you agree to be bound by our <a className="link" href="/tos">Terms of Service</a>.</p>
<p className="text-3xl mb-6"> Create Your Account </p>
{(success !== undefined) && (
<div className="text-2xl text-purple-300 mb-12">
<div className="text-2xl mb-12">
{
success ? (
<>
Expand Down Expand Up @@ -89,7 +88,7 @@ export default function RegistrationPage(){
/>
{errors.email && touched.email ? <div className="text-red-500">{errors.email}</div> : null}

<button className="btn mt-12 text-4xl py-6" type="submit">
<button className="btn btn-lg btn-emphasis btn-square mt-12 text-4xl py-6" type="submit">
send me a magic login link
</button>
</div>
Expand Down
Loading