mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-04-01 02:41:39 -05:00
Updated copy for signup magic link popup
This commit is contained in:
parent
624a16ffad
commit
de54f7de74
1 changed files with 10 additions and 2 deletions
|
@ -27,13 +27,21 @@ export default class MagicLinkPage extends React.Component {
|
|||
static contextType = AppContext;
|
||||
|
||||
renderFormHeader() {
|
||||
let popupTitle = `We've sent you a login link!`;
|
||||
let popupDescription = `If the email doesn't arrive in 3 minutes, be sure to check your spam folder!`;
|
||||
|
||||
if (this.context.lastPage === 'signup') {
|
||||
popupTitle = `Now check your email!`;
|
||||
popupDescription = `To complete signup, click the confirmation link in your inbox. If it doesn’t arrive within 3 minutes, check your spam folder!`;
|
||||
}
|
||||
|
||||
return (
|
||||
<section className='gh-portal-inbox-notification'>
|
||||
<header className='gh-portal-header'>
|
||||
<EnvelopeIcon className='gh-portal-icon gh-portal-icon-envelope' />
|
||||
<h2>We've sent you a login link!</h2>
|
||||
<h2 className='gh-portal-main-title'>{popupTitle}</h2>
|
||||
</header>
|
||||
<p>If the email doesn't arrive in 3 minutes, be sure to check your spam folder!</p>
|
||||
<p>{popupDescription}</p>
|
||||
</section>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue