summaryrefslogtreecommitdiffstats
path: root/application/modules/user/views/scripts/index/index.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'application/modules/user/views/scripts/index/index.phtml')
-rw-r--r--application/modules/user/views/scripts/index/index.phtml18
1 files changed, 17 insertions, 1 deletions
diff --git a/application/modules/user/views/scripts/index/index.phtml b/application/modules/user/views/scripts/index/index.phtml
index f4feaa0..77e0720 100644
--- a/application/modules/user/views/scripts/index/index.phtml
+++ b/application/modules/user/views/scripts/index/index.phtml
@@ -1,2 +1,18 @@
<h1>Welcome</h1>
-<div class='infobox'>nothing to see here</div>
+
+<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 ?>
+