File Structure for: SURVAM.zip Generated on: 2026-04-16 22:34:51 Total Files: 46 Total Folders: 13 ================================================== ├── dashboard.php ├── default.php ├── index.php ├── api/ │ ├── surveys.php │ ├── upload.php │ └── billing.php ├── account/ │ ├── profile.php │ ├── upgrade.php │ └── billing.php ├── admin/ │ ├── surveys.php │ ├── users.php │ ├── settings.php │ ├── index.php │ ├── plans.php │ ├── reports.php │ └── transactions.php ├── s/ │ └── index.php ├── surveys/ │ ├── delete.php │ ├── builder.php │ ├── index.php │ ├── results.php │ ├── create.php │ └── export.php ├── assets/ │ ├── css/ │ │ ├── style.css │ │ └── admin.css │ └── js/ │ ├── admin.js │ ├── app.js │ └── builder.js ├── README.md ├── vendor/ │ └── README.txt ├── uploads/ │ └── media/ │ ├── media_1_1776222718_df5f8684.png │ └── media_1_1776222776_e54cdee1.png ├── auth/ │ ├── login.php │ ├── logout.php │ ├── reset.php │ ├── register.php │ └── forgot.php └── includes/ ├── auth.php ├── index.php ├── db.php ├── footer.php ├── admin_footer.php ├── functions.php ├── config.php ├── admin_header.php └── header.php