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 @@ -is_activated) { ?> -

Your account has been activated

+
+ is_activated) { + $this->widget('TitleBreadcrumb', [ + 'pageTitle' => 'Account activated', + 'breadcrumbItems' => [ + ['label' => 'Home', 'href' => '/'], + ['isActive' => true, 'label' => 'Account activated'], + ] + ]); -

to configure your account.

- -

Account Pending

-You are now registered. We will contact you shortly. Feel free to -or params['support_email']) ?>  -if you prefer.

- + ?> +

Your account has been activated. to configure your account.

+ 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 params['support_email']) ?> if you prefer.

+ + +
\ No newline at end of file diff --git a/protected/views/user/welcome.php b/protected/views/user/welcome.php index fe06c3f174..6c7289d031 100755 --- a/protected/views/user/welcome.php +++ b/protected/views/user/welcome.php @@ -1,7 +1,18 @@ pageTitle = Yii::app()->name . ' - Welcome' ?> -

-
-


- $user->id)) ?>.

- +
+ widget('TitleBreadcrumb', [ + 'pageTitle' => Yii::t('app', 'Welcome!'), + 'breadcrumbItems' => [ + ['label' => 'Home', 'href' => '/'], + ['isActive' => true, 'label' => 'Welcome'], + ] + ]); + ?> +

+
+ + $user->id)) ?>. +

+
\ No newline at end of file