summaryrefslogtreecommitdiff
path: root/views/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'views/index.php')
-rw-r--r--views/index.php10
1 files changed, 9 insertions, 1 deletions
diff --git a/views/index.php b/views/index.php
index f60b560..4277fe1 100644
--- a/views/index.php
+++ b/views/index.php
@@ -5,7 +5,15 @@
<p class="tagline">Quill is a simple app for posting text notes to your website.</p>
- <? if(session('me')): ?>
+<? if(session('me')):
+ if ( profile('photo') ) {
+ ?> <img src="<?php echo profile('photo'); ?>" height="125" alt="Profile Image" />
+<?php }
+ if ( profile('name') ) {
+ ?> <p><?php echo profile('name'); ?></p>
+<?php }
+ ?>
+
<p>You're already signed in!<p>
<p><a href="/dashboard" class="btn btn-primary">Continue</a></p>
<? else: ?>