Job Portal Application

This is a job portal application with user authentication, profile management, and job search functionality.

Project Structure

├── backend/
│   ├── index.ts             # Main API entry point
│   ├── routes/              # API route handlers
│   │   ├── auth.ts          # Authentication routes (login, register)
│   │   └── profile.ts       # Profile management routes
│   └── utils/               # Backend utilities
│       └── db.ts            # Database utilities
├── frontend/
│   ├── components/          # Vue components
│   │   ├── AppNavbar.vue    # Navigation bar
│   │   ├── CompleteProfile.vue # Profile completion form
│   │   ├── ForgotPassword.vue # Password recovery
│   │   ├── LoginForm.vue    # Login form
│   │   └── RegisterForm.vue # Registration form
│   ├── index.html           # Main HTML template
│   └── index.js             # Frontend entry point
└── shared/
    └── types.ts             # Shared type definitions

Features

  • User authentication (login, register, password recovery)
  • Profile management
  • Responsive design

API Endpoints

  • POST /api/login/ - User login
  • POST /api/register/ - User registration
  • POST /api/send-verification-code/ - Send verification code
  • POST /api/profile/ - Create or update user profile

Technologies

  • Backend: Hono (API framework)
  • Frontend: Vue.js
  • Storage: SQLite