0
Fork 0
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:
Peter Zimon 2021-09-09 13:56:03 +02:00
parent 624a16ffad
commit de54f7de74

View file

@ -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 doesnt 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>
);
}