A comprehensive MERN-based application for managing medical forms with authentication.
├── backend/
│ ├── database/
│ │ ├── migrations.ts # Database schema
│ │ └── queries.ts # Database operations
│ ├── routes/
│ │ ├── auth.ts # Authentication routes
│ │ ├── forms.ts # Form CRUD operations
│ │ └── static.ts # Static file serving
│ └── index.ts # Main server entry point
├── frontend/
│ ├── components/
│ │ ├── App.tsx # Main application
│ │ ├── FormHeader.tsx # Shared form header
│ │ ├── FormSignature.tsx # Shared signature area
│ │ ├── FormSelector.tsx # Form type selector
│ │ └── forms/ # Individual form components
│ ├── index.html # Main HTML template
│ └── index.tsx # Frontend entry point
└── shared/
├── types.ts # Shared TypeScript types
└── utils.ts # Shared utilities
Uses LastLogin service for Google OAuth authentication. Users must be logged in to access forms.