Public
Like
funapp
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Vue.js frontend for the Jobrapido job platform.
AppNavbar.vue- Navigation bar componentLoginForm.vue- User login formRegisterForm.vue- User registration formForgotPassword.vue- Password reset request formCompleteProfile.vue- User profile completion form
The frontend communicates with the Django backend through REST API endpoints:
- Authentication:
/api/login/,/api/register/, etc. - Profile management:
/api/profile/,/api/upload-documents/
To run the frontend in development mode:
npm install
npm run serve
To build the frontend for production:
npm run build
The built files will be placed in the dist directory, which can be served by the Django backend.