PHP Classes

File: aksara/Modules/Xhr/Views/partial/account.php

Recommend this page to a friend!
  Classes of Aby Dahana   Aksara   aksara/Modules/Xhr/Views/partial/account.php   Download  
File: aksara/Modules/Xhr/Views/partial/account.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change: Initial commit for update 5.0.0
Date: 4 months ago
Size: 781 bytes
 

Contents

Class file image Download
<div class="container-fluid">
    <a href="<?= base_url('dashboard'); ?>" class="d-block --xhr">
        <i class="mdi mdi-monitor-dashboard"></i>
        <span><?= phrase('Dashboard'); ?></span>
    </a>
    <hr />
    <a href="<?= base_url('user'); ?>" class="d-block --xhr">
        <i class="mdi mdi-account-circle-outline"></i>
        <span><?= phrase('Profile'); ?></span>
    </a>
    <hr />
    <a href="<?= base_url('administrative/account'); ?>" class="d-block --xhr">
        <i class="mdi mdi-account-outline"></i>
        <span><?= phrase('Account'); ?></span>
    </a>
    <hr />
    <a href="<?= base_url('auth/sign_out'); ?>" class="d-block text-danger --xhr">
        <i class="mdi mdi-logout"></i>
        <span><?= phrase('Sign Out'); ?></span>
    </a>
</div>