diff --git a/themes/blueprint/templates/myresearch/newpassword.phtml b/themes/blueprint/templates/myresearch/newpassword.phtml index 92f10533e5b50ff4dea42af38b29ccb75aa14772..0a2c1f639046f9930ffde5d1d4b81ee79a80eb2a 100644 --- a/themes/blueprint/templates/myresearch/newpassword.phtml +++ b/themes/blueprint/templates/myresearch/newpassword.phtml @@ -1,3 +1,11 @@ +<? + // Set up page title: + $this->headTitle($this->translate('Create New Password')); + + // Set up breadcrumbs: + $this->layout()->breadcrumbs = '<a href="' . $this->url('myresearch-home') . '">' . $this->transEsc('Your Account') . '</a>' + . '<span>></span><em>' . $this->transEsc('Create New Password') . '</em>'; +?> <div class="<?=$this->layoutClass('mainbody')?>"> <h2><?=$this->transEsc('Create New Password') ?></h2> <?=$this->flashmessages() ?> diff --git a/themes/bootstrap/templates/myresearch/newpassword.phtml b/themes/bootstrap/templates/myresearch/newpassword.phtml index cdb2d5d94abb3af2c2abd745c5db1e65c201a280..4eb9ac9daebfb100a6dd6ac4e4503822f6cd09ba 100644 --- a/themes/bootstrap/templates/myresearch/newpassword.phtml +++ b/themes/bootstrap/templates/myresearch/newpassword.phtml @@ -1,3 +1,11 @@ +<? + // Set up page title: + $this->headTitle($this->translate('Create New Password')); + + // Set up breadcrumbs: + $this->layout()->breadcrumbs = '<li><a href="' . $this->url('myresearch-home') . '">' . $this->transEsc('Your Account') . '</a> <span class="divider">></span></li>' + . '<li class="active">' . $this->transEsc('Create New Password') . '</li>'; +?> <div class="<?=$this->layoutClass('mainbody')?>"> <h2><?=$this->transEsc('Create New Password') ?></h2> <?=$this->flashmessages() ?> diff --git a/themes/bootstrap3/templates/myresearch/newpassword.phtml b/themes/bootstrap3/templates/myresearch/newpassword.phtml index 0d934fae3ba2e933110e23d5104a7ef810cd0b79..976b18b68e8c54b005840470390bdc6b1259ba34 100644 --- a/themes/bootstrap3/templates/myresearch/newpassword.phtml +++ b/themes/bootstrap3/templates/myresearch/newpassword.phtml @@ -1,3 +1,11 @@ +<? + // Set up page title: + $this->headTitle($this->translate('Create New Password')); + + // Set up breadcrumbs: + $this->layout()->breadcrumbs = '<li><a href="' . $this->url('myresearch-home') . '">' . $this->transEsc('Your Account') . '</a></li>' + . '<li class="active">' . $this->transEsc('Create New Password') . '</li>'; +?> <? if ($this->auth()->isLoggedIn()): ?> <div class="row"> <div class="<?=$this->layoutClass('mainbody')?>"> @@ -30,4 +38,4 @@ <?=$this->context($this)->renderInContext("myresearch/menu.phtml", array('active' => 'newpassword'))?> </div> </div> -<? endif; ?> \ No newline at end of file +<? endif; ?>