Skip to content
Snippets Groups Projects
Commit 4357dec3 authored by Demian Katz's avatar Demian Katz
Browse files

Added missing titles/breadcrumbs.

parent cab3573e
No related merge requests found
<?
// 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>&gt;</span><em>' . $this->transEsc('Create New Password') . '</em>';
?>
<div class="<?=$this->layoutClass('mainbody')?>">
<h2><?=$this->transEsc('Create New Password') ?></h2>
<?=$this->flashmessages() ?>
......
<?
// 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">&gt;</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() ?>
......
<?
// 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; ?>
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment