I would like to "inject" text or even a logo above "Sign in to start your session", is there a hook for that and how to proceed please?
Thank you for your help
There's the 'before_active_form' action hook, which is triggered before almost all forms, so in theory you can do:
PHP:
<?php
Yii::app()->hooks->addAction('before_active_form',function($collection){// if not customer login, stopif(!Yii::app()->apps->isAppName('customer')){return;}// if not /customer/index.php/guest/index, stopif($collection->controller->route!='guest/index'){return;}// print your htmlecho"Some html will appear here...";});