chore: Clarify flow on /create page

This commit is contained in:
Tom Moor 2021-04-03 14:29:08 -07:00
parent d2e8311b39
commit 8cbc873451
2 changed files with 12 additions and 2 deletions

View File

@ -106,7 +106,7 @@ class Provider extends React.Component<Props, State> {
icon={icon ? <Logo>{icon}</Logo> : null}
fullwidth
>
{isCreate ? "Sign up" : "Continue"} with {name}
Continue with {name}
</ButtonLarge>
</Wrapper>
);

View File

@ -104,7 +104,12 @@ function Login({ location }: Props) {
</Logo>
{isCreate ? (
<Heading centered>Create an account</Heading>
<>
<Heading centered>Create an account</Heading>
<GetStarted>
Get started by choosing a sign-in method for your new team below
</GetStarted>
</>
) : (
<Heading centered>Login to {config.name || "Outline"}</Heading>
)}
@ -170,6 +175,11 @@ const Logo = styled.div`
height: 38px;
`;
const GetStarted = styled(HelpText)`
text-align: center;
margin-top: -12px;
`;
const Note = styled(HelpText)`
text-align: center;
font-size: 14px;