From 4f7ed036b019894f2bc55a58e6eafd8164b52a14 Mon Sep 17 00:00:00 2001 From: Shivam Mishra Date: Mon, 4 Dec 2023 13:07:17 +0530 Subject: [PATCH] feat: add setup user --- .../dashboard/i18n/locale/en/signup.json | 26 +++++++- .../v3/views/auth/start/SetupUser.vue | 65 +++++++++++++++++-- 2 files changed, 85 insertions(+), 6 deletions(-) diff --git a/app/javascript/dashboard/i18n/locale/en/signup.json b/app/javascript/dashboard/i18n/locale/en/signup.json index f0a7064ce..15d4e34a7 100644 --- a/app/javascript/dashboard/i18n/locale/en/signup.json +++ b/app/javascript/dashboard/i18n/locale/en/signup.json @@ -42,10 +42,31 @@ "HAVE_AN_ACCOUNT": "Already have an account?" }, "ONBOARDING": { + "PROFILE": { + "TITLE": "Tell us about yourself", + "BODY": "Here, we'll set up your details like profile picture, display name, contact info, etc., visible to end users, to make a positive first impression.", + "SUBMIT": "Continue to account setup", + "FULL_NAME": { + "LABEL": "Full name", + "PLACEHOLDER": "Enter your full name" + }, + "DISPLAY_NAME": { + "LABEL": "Display name", + "PLACEHOLDER": "Enter the name you want to display your customers" + }, + "PHONE_NUMBER": { + "LABEL": "Phone number (Optional)", + "PLACEHOLDER": "Enter your phone number" + }, + "SIGNATURE": { + "LABEL": "Signature", + "PLACEHOLDER": "Add a signature for your messages. You can set this later in your settings." + } + }, "COMPANY": { "TITLE": "Tell us about your company", "BODY": "In this section, we'll set up the language, timezone, and company size. This information allows us to provide contextually accurate information and suggest relevant features for you.", - "SUBMIT": "Go to next step", + "SUBMIT": "Continue", "COMPANY_NAME": { "LABEL": "Company name", "PLACEHOLDER": "Enter your company name", @@ -63,6 +84,9 @@ "LABEL": "Company size", "PLACEHOLDER": "How many people work at your company?" } + }, + "FOUNDERS_NOTE": { + "TITLE": "A note from the founder" } } } diff --git a/app/javascript/v3/views/auth/start/SetupUser.vue b/app/javascript/v3/views/auth/start/SetupUser.vue index b92b39326..ec48681bc 100644 --- a/app/javascript/v3/views/auth/start/SetupUser.vue +++ b/app/javascript/v3/views/auth/start/SetupUser.vue @@ -1,11 +1,66 @@