summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/index/index.phtml
blob: 77e0720eb2c0a9e10037dd645f42b92d2fcde970 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<h1>Welcome</h1>

<div class='infobox'><?php echo $this->text;?></div>
<div class='checkbox'><?php echo $this->text;?></div>
<div class='warningbox'><?php echo $this->text;?></div>
<div class='errorbox'><?php echo $this->text;?></div>
<?php print_a($this->links);?>

<?php if(count($this->links)>0 && is_array($this->links)): ?>
<ul>
<?php foreach($this->links as $link => $text):?>
<li><a href='<?php echo $link;?>'><?php echo $text;?></a></li>

<?php endforeach ?>
</ul>

<?php endif ?>