profile.php 597 B

1234567891011121314151617181920212223
  1. <div class="row">
  2. <div class="col-md-12">
  3. <h3 class="text-muted text-center pleaselogin">Profile</h3>
  4. <table>
  5. <tr>
  6. <td>Sent</td>
  7. <td><?php echo $this->_['openvpn']['send']; ?></td>
  8. </tr>
  9. <tr>
  10. <td>Received</td>
  11. <td><?php echo $this->_['openvpn']['received']; ?></td>
  12. </tr>
  13. <tr>
  14. <td>Total</td>
  15. <td><?php echo $this->_['openvpn']['total']; ?></td>
  16. </tr>
  17. <tr>
  18. <td>Logged on</td>
  19. <td><?php echo date('j.n.Y G:i', strtotime('-2 hours', strtotime($this->_['openvpn']['date']))); ?> </td>
  20. </tr>
  21. </table>
  22. </div>
  23. </div>