Join => Register
This commit is contained in:
parent
382eb256f4
commit
a6000ecf0b
3 changed files with 6 additions and 6 deletions
|
@ -217,7 +217,7 @@ const Header = (props: Props) => {
|
|||
<React.Fragment>
|
||||
<MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.AUTH}`)}>
|
||||
<Icon aria-hidden icon={ICONS.SIGN_UP} />
|
||||
{__('Join')}
|
||||
{__('Register')}
|
||||
</MenuItem>
|
||||
<MenuItem className="menu__link" onSelect={() => history.push(`/$/${PAGES.AUTH_SIGNIN}`)}>
|
||||
<Icon aria-hidden icon={ICONS.SIGN_IN} />
|
||||
|
@ -253,7 +253,7 @@ const Header = (props: Props) => {
|
|||
{IS_WEB && !authenticated && (
|
||||
<div className="header__auth-buttons">
|
||||
<Button navigate={`/$/${PAGES.AUTH_SIGNIN}`} button="link" label={__('Sign In')} />
|
||||
<Button navigate={`/$/${PAGES.AUTH}`} button="primary" label={__('Join')} />
|
||||
<Button navigate={`/$/${PAGES.AUTH}`} button="primary" label={__('Register')} />
|
||||
</div>
|
||||
)}
|
||||
</div>
|
||||
|
|
|
@ -145,7 +145,7 @@ function UserEmailNew(props: Props) {
|
|||
<Button
|
||||
button="primary"
|
||||
type="submit"
|
||||
label={__('Join')}
|
||||
label={__('Register')}
|
||||
disabled={
|
||||
!email || !password || !valid || (!IS_WEB && !localShareUsageData && !shareUsageData) || isPending
|
||||
}
|
||||
|
|
|
@ -79,7 +79,7 @@ function UserEmailReturning(props: Props) {
|
|||
label={__('Sign In')}
|
||||
disabled={!email || !valid}
|
||||
/>
|
||||
<Button button="link" onClick={handleChangeToSignIn} label={__('Join')} />
|
||||
<Button button="link" onClick={handleChangeToSignIn} label={__('Register')} />
|
||||
</div>
|
||||
</Form>
|
||||
</div>
|
||||
|
@ -93,8 +93,8 @@ function UserEmailReturning(props: Props) {
|
|||
<Nag
|
||||
type="helpful"
|
||||
relative
|
||||
message={__("We can't find that email. Did you mean to join?")}
|
||||
actionText={__('Join')}
|
||||
message={__("We can't find that email. Did you mean to register?")}
|
||||
actionText={__('Register')}
|
||||
/>
|
||||
)}
|
||||
{!emailExistsFromUrl && !emailDoesNotExist && errorMessage && (
|
||||
|
|
Loading…
Reference in a new issue