| 1234567891011121314151617181920212223 |
- <div class="row">
- <div class="col-md-12">
- <h3 class="text-muted text-center pleaselogin">Profile</h3>
- <table>
- <tr>
- <td>Sent</td>
- <td><?php echo $this->_['openvpn']['send']; ?></td>
- </tr>
- <tr>
- <td>Received</td>
- <td><?php echo $this->_['openvpn']['received']; ?></td>
- </tr>
- <tr>
- <td>Total</td>
- <td><?php echo $this->_['openvpn']['total']; ?></td>
- </tr>
- <tr>
- <td>Logged on</td>
- <td><?php echo date('j.n.Y G:i', strtotime('-2 hours', strtotime($this->_['openvpn']['date']))); ?> </td>
- </tr>
- </table>
- </div>
- </div>
|