Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <div class="container">
  2. <h3>Din Profil</h3>
  3. <table class="table table-striped">
  4. <thead>
  5. <tr>
  6. <th>Namn</th>
  7. <th>Email</th>
  8. <th>Telefonnummer</th>
  9. </tr>
  10. </thead>
  11. <tbody>
  12. <tr>
  13. <td>{{request.user}}</td>
  14. <td>{{request.user.email}}</td>
  15. <td>{{request.user.phone}}</td>
  16. </tr>
  17. </tbody>
  18. </table>
  19. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement