779bcf5e0d
* feat: Update Signup page designs * feat: Update the signup page with dynamic testimonials * Remove the images * chore: Minor UI fixes * chore: Form aligned to centre * Update app/javascript/dashboard/routes/auth/components/Signup/Form.vue * Design improvements * Update company name key * Revert "chore: Minor UI fixes" This reverts commit 1556f4ca835d9aa0d9620fd6a3d52d259f0d7d65. * Revert "Design improvements This reverts commit dfb2364cf2f0cc93123698fde92e5f9e00536cc2. * Remove footer * Fix spacing * Update app/views/installation/onboarding/index.html.erb Co-authored-by: iamsivin <iamsivin@gmail.com> Co-authored-by: Sivin Varghese <64252451+iamsivin@users.noreply.github.com> Co-authored-by: Nithin David Thomas <1277421+nithindavid@users.noreply.github.com>
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
import Auth from './Auth';
|
|
import Confirmation from './Confirmation';
|
|
import PasswordEdit from './PasswordEdit';
|
|
import ResetPassword from './ResetPassword';
|
|
import { frontendURL } from '../../helper/URLHelper';
|
|
|
|
const Signup = () => import('./Signup');
|
|
|
|
export default {
|
|
routes: [
|
|
{
|
|
path: frontendURL('auth/signup'),
|
|
name: 'auth_signup',
|
|
component: Signup,
|
|
meta: { requireSignupEnabled: true },
|
|
},
|
|
{
|
|
path: frontendURL('auth'),
|
|
name: 'auth',
|
|
component: Auth,
|
|
children: [
|
|
{
|
|
path: 'confirmation',
|
|
name: 'auth_confirmation',
|
|
component: Confirmation,
|
|
props: route => ({
|
|
config: route.query.config,
|
|
confirmationToken: route.query.confirmation_token,
|
|
redirectUrl: route.query.route_url,
|
|
}),
|
|
},
|
|
{
|
|
path: 'password/edit',
|
|
name: 'auth_password_edit',
|
|
component: PasswordEdit,
|
|
props: route => ({
|
|
config: route.query.config,
|
|
resetPasswordToken: route.query.reset_password_token,
|
|
redirectUrl: route.query.route_url,
|
|
}),
|
|
},
|
|
{
|
|
path: 'reset/password',
|
|
name: 'auth_reset_password',
|
|
component: ResetPassword,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|