diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a7f11f541..46752633ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ## Unreleased +- Feat #1892: Update onboarding pages layout - Fix #2042: Batch deletion of file attributes and samples ## v4.3.9 - 2024-10-28 - 961f7821a - diff --git a/protected/views/user/confirm.php b/protected/views/user/confirm.php index da0ff07891..be8c0c8090 100755 --- a/protected/views/user/confirm.php +++ b/protected/views/user/confirm.php @@ -1,12 +1,29 @@ - if ($user->is_activated) { ?> -
= CHtml::link("Log in", array('site/login')) ?> to configure your account.
- } else { ?> -Your account has been activated. = CHtml::link("Log in", array('site/login')) ?> to configure your account.
+ } else { + $this->widget('TitleBreadcrumb', [ + 'pageTitle' => 'Account Pending', + 'breadcrumbItems' => [ + ['label' => 'Home', 'href' => '/'], + ['isActive' => true, 'label' => 'Account Pending'], + ] + ]); + + ?> +You are now registered. We will contact you shortly. Feel free to + or = CHtml::link("contact us", "mailto:" . Yii::app()->params['support_email']) ?> if you prefer.
+ } ?> + +=Yii::t('app' , 'Thank you for registering with GigaDB. An account activation email will be sent to your email address shortly. To complete your account\'s activation, please click on the activation link in the account activation email.')?>
-= Yii::t('app' , 'If you don\'t receive the email within a few minutes, please check your spam filters, or')?> = CHtml::link(Yii::t('app' ,"resend the email"), array("user/sendActivationEmail", 'id'=>$user->id)) ?>.
+ = Yii::t('app', 'Thank you for registering with GigaDB. An account activation email will be sent to your email address shortly. To complete your account\'s activation, please click on the activation link in the account activation email.') ?>
+ = Yii::t('app', 'If you don\'t receive the email within a few minutes, please check your spam filters, or') ?>
+ = CHtml::link(Yii::t('app', "resend the email"), array("user/sendActivationEmail", 'id' => $user->id)) ?>.
+