e-rkas/
│
├── assets/
│   ├── css/
│   │   └── style.css
│   ├── js/
│   │   └── script.js
│   └── img/
│
├── config/
│   └── database.php
│
├── includes/
│   ├── header.php
│   ├── footer.php
│   └── navbar.php
│
├── admin/
│   ├── dashboard.php
│   ├── tahun_anggaran/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── sumber_dana/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── kegiatan/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── rincian_kegiatan/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── anggaran/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   ├── edit.php
│   │   └── hapus.php
│   ├── realisasi/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   └── hapus.php
│   ├── pemasukan/
│   │   ├── index.php
│   │   ├── tambah.php
│   │   └── hapus.php
│   └── users/
│       ├── index.php
│       ├── tambah.php
│       ├── edit.php
│       └── hapus.php
│
├── auth/
│   ├── login.php
│   ├── logout.php
│   └── proses_login.php
│
├── api/
│   ├── get_rincian.php
│   ├── check_nama_kegiatan.php
│   ├── check_kode_kegiatan.php
│   └── get_anggaran.php
│
├── index.php
└── README.txt