Differential D21778 Diff 51915 src/applications/auth/controller/PhabricatorMustVerifyEmailController.php
Changeset View
Changeset View
Standalone View
Standalone View
src/applications/auth/controller/PhabricatorMustVerifyEmailController.php
Show All 28 Lines | if ($request->isFormPost()) { | ||||
$sent->appendChild( | $sent->appendChild( | ||||
pht( | pht( | ||||
'Another verification email was sent to %s.', | 'Another verification email was sent to %s.', | ||||
phutil_tag('strong', array(), $email_address))); | phutil_tag('strong', array(), $email_address))); | ||||
} | } | ||||
$must_verify = pht( | $must_verify = pht( | ||||
'You must verify your email address to log in. You should have a '. | 'You must verify your email address to log in. You should have a '. | ||||
'new email message from Phabricator with verification instructions '. | 'new email message with verification instructions in your inbox (%s).', | ||||
'in your inbox (%s).', | |||||
phutil_tag('strong', array(), $email_address)); | phutil_tag('strong', array(), $email_address)); | ||||
$send_again = pht( | $send_again = pht( | ||||
'If you did not receive an email, you can click the button below '. | 'If you did not receive an email, you can click the button below '. | ||||
'to try sending another one.'); | 'to try sending another one.'); | ||||
$dialog = id(new AphrontDialogView()) | $dialog = id(new AphrontDialogView()) | ||||
->setUser($viewer) | ->setUser($viewer) | ||||
Show All 17 Lines |