A user-friendly online platform for parents to register their children, manage profiles, and receive confirmation emails for Happiness Day Care Centre.
Secure Registration & Login
Parent & Child Profiles
Rules & Regulations Acceptance
Proof of Registration Emails
WhatsApp Integration for Communication
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Schema definitions
│ │ └── queries.ts # DB query functions
│ ├── routes/ # API routes
│ │ ├── auth.ts # Authentication routes
│ │ ├── children.ts # Child management routes
│ │ ├── parents.ts # Parent profile routes
│ │ └── static.ts # Static file serving
│ └── index.ts # Main entry point
├── frontend/
│ ├── components/ # Reusable UI components
│ ├── pages/ # Page templates
│ ├── favicon.svg # Site favicon
│ ├── index.html # Main HTML template
│ ├── app.js # Frontend JS
│ └── style.css # Global styles
└── shared/
└── types.ts # Shared types and interfaces