Advertisement
Guest User

Untitled

a guest
Jan 19th, 2020
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. <div class="nav-item">
  2. <button class="userButton row">
  3. <?php if( !isset($_SESSION['id']) and !isset($_SESSION['role']) or empty($user.getPhoto())): ?>
  4. <i class=" fas fa-user">
  5. <a id="userButtonText " href=""> Sing Up </a>
  6. <?php else: ?>
  7. <img class="userPhoto d-block rounded-circl" src="<?=$user->getPhoto()?>" alt=""/>'
  8. <a id="userButtonText d-block" href=""> <?="".$user.getName(). $user->getSurname() ?> </a>
  9. <?php endif; ?>
  10. <!-- <img class="userPhoto d-block rounded-circl" src="" alt="fa-user" />-->
  11. <!-- <button class="userButton d-block rounded-circl" > <i class="fas fa-user"> </i> </button>-->
  12. </button>
  13. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement