Astro_Match_4v0_Web_Phase1\ ├── app\ │ ├── admin\ │ │ ├── image_moderation.php │ │ └── user_management.php │ ├── astro\ │ │ ├── sweph\ │ │ │ └── ephe\ │ │ │ ├── seas_18.se1 │ │ │ ├── semo_18.se1 │ │ │ └── sepl_18.se1 │ │ └── basic_calc.php │ ├── astrology\ │ │ └── chinese_zodiac.php │ ├── auth\ │ │ ├── auth_check.php │ │ ├── bootstrap_admin.php │ │ ├── login_handler.php │ │ ├── register_handler.php │ │ └── role_check.php │ ├── config\ │ │ ├── database.php │ │ └── profile_database.php │ ├── places\ │ │ └── search_cities.php │ ├── profile\ │ │ ├── images.php │ │ ├── profile_data.php │ │ ├── save_profile.php │ │ └── upload_image.php │ └── utils\ │ ├── csrf.php │ ├── security.php │ └── session.php ├── db\ │ └── migrations\ │ ├── 2026_01_10_add_chinese_new_year.sql │ └── 2026_01_10_add_user_astrology.sql ├── public\ │ ├── admin\ │ │ └── admin_dashboard.php │ ├── assets\ │ │ ├── css\ │ │ │ └── style.css │ │ ├── img\ │ │ │ └── astro_bg.svg │ │ ├── js\ │ │ └── hintergrund.png │ ├── uploads\ │ │ ├── user_4\ │ │ │ └── 641aa3d9f1fb2ed418ba9aa67376bfe4.jpg │ │ └── cities500.txt │ ├── dashboard.php │ ├── index.php │ ├── login.php │ ├── logout.php │ ├── profile.php │ └── register.php ├── scripts\ │ └── seed_chinese_new_year.php ├── snippets\ │ └── PROFILE_ASTRO_BLOCK.php ├── sql\ │ ├── auth_db.sql │ ├── profile_db.sql │ ├── profile_db_phase2_1.sql │ └── profile_db_phase2_2_alter.sql └── tools\ └── import_cities500.php