gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

showProfile.php (810B)


      1 <div class="container">
      2     <h1>LoginController/showProfile</h1>
      3 
      4     <div class="box">
      5         <h2>Your profile</h2>
      6 
      7         <!-- echo out the system feedback (error and success messages) -->
      8         <?php $this->renderFeedbackMessages(); ?>
      9 
     10         <div>Your username: <?= $this->user_name; ?></div>
     11         <div>Your email: <?= $this->user_email; ?></div>
     12         <div>Your avatar image:
     13             <?php if (Config::get('USE_GRAVATAR')) { ?>
     14                 Your gravatar pic (on gravatar.com): <img src='<?= $this->user_gravatar_image_url; ?>' />
     15             <?php } else { ?>
     16                 Your avatar pic (saved locally): <img src='<?= $this->user_avatar_file; ?>' />
     17             <?php } ?>
     18         </div>
     19         <div>Your account type is: <?= $this->user_account_type; ?></div>
     20     </div>
     21 </div>