Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Onboarding Flow]- Created two input fields, 'firstname' and 'lastname' in signup Details page #607

Merged
merged 40 commits into from
Sep 4, 2023
Merged
Changes from 1 commit
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
35254fc
feat: Set up StepperSignupComponent with initial step handling
shubhamsinghbundela Aug 28, 2023
f1a424c
revert url.js file code
shubhamsinghbundela Aug 28, 2023
5eddc12
test: Verify initial step handling in StepperSignupComponent
shubhamsinghbundela Aug 28, 2023
8f4351b
revert url.js file code
shubhamsinghbundela Aug 28, 2023
6d3d139
feat: Add firstname and lastname input fields
shubhamsinghbundela Aug 29, 2023
f764a98
skip the test of stepper-signup-test.js
shubhamsinghbundela Aug 29, 2023
991ae18
modify test of stepper-signup-test.js
shubhamsinghbundela Aug 29, 2023
3e868fe
Test input field interaction and combined action behavior
shubhamsinghbundela Aug 30, 2023
235bfdc
test: Verify interaction between SignupSteps::StepOne and parent comp…
shubhamsinghbundela Aug 31, 2023
dbd1ce2
remove console.log
shubhamsinghbundela Aug 31, 2023
97beb86
Design: Create Onboarding Card Component
shubhamsinghbundela Sep 2, 2023
c43fe88
Merge branch 'feature/card' of https://github.com/Real-Dev-Squad/webs…
shubhamsinghbundela Sep 2, 2023
88fb023
Enhancement: Added Input Field to Onboarding Card Component
shubhamsinghbundela Sep 2, 2023
ba7d6ae
Add logo to onboarding card component
shubhamsinghbundela Sep 3, 2023
e043455
Added heading on signup details onboarding card
shubhamsinghbundela Sep 3, 2023
5f3dc43
Refactor input styles to align with new design
shubhamsinghbundela Sep 3, 2023
74b8bde
fix linking rds and github linking logo
shubhamsinghbundela Sep 3, 2023
a551058
minor change on onboarding card component
shubhamsinghbundela Sep 3, 2023
08f45dc
Update logo classname to adhere to BEM convention
shubhamsinghbundela Sep 3, 2023
d810ebe
revert urls.js file
shubhamsinghbundela Sep 3, 2023
90d1ab8
Addressed feedback from the Satyam code review
shubhamsinghbundela Sep 3, 2023
1c74744
Added test for rendering Onboarding Card during SignupStep component …
shubhamsinghbundela Sep 3, 2023
ed69ade
Create 'signup-steps/step-zero' component and separate logo in partic…
shubhamsinghbundela Sep 3, 2023
6859950
Add tests for rendering 'RealSevSquad' logo and heading on signupDeta…
shubhamsinghbundela Sep 3, 2023
c8ecbd6
Add tests for rendering 'all logo' on github login page
shubhamsinghbundela Sep 3, 2023
e9340ae
Addressed feedback from the Sumit code review
shubhamsinghbundela Sep 4, 2023
b099e66
Addressed feedback from the Satyam code review
shubhamsinghbundela Sep 4, 2023
4bb2377
change in step-zero test file
shubhamsinghbundela Sep 4, 2023
8be9ba8
revert constant/urls.js file
shubhamsinghbundela Sep 4, 2023
7b7c7d9
px to rem
shubhamsinghbundela Sep 4, 2023
e2ecdaa
revert constant/urls.js file
shubhamsinghbundela Sep 4, 2023
06c430a
added feature flag
shubhamsinghbundela Sep 4, 2023
7d52d21
change input style
shubhamsinghbundela Sep 4, 2023
e51e1e8
change select style
shubhamsinghbundela Sep 4, 2023
a70833f
Addressed feedback from the vinit code review
shubhamsinghbundela Sep 4, 2023
dadcb4b
Addressed feedback from the satyam code review
shubhamsinghbundela Sep 4, 2023
6f60a5a
remove redundant rds-logo
shubhamsinghbundela Sep 4, 2023
a13956a
remove redundant rds-logo
shubhamsinghbundela Sep 4, 2023
2a4d174
changes in signup-steps/step-1 test
shubhamsinghbundela Sep 4, 2023
db11dc8
Addressed feedback from the rohan code review
shubhamsinghbundela Sep 4, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Enhancement: Added Input Field to Onboarding Card Component
  • Loading branch information
shubhamsinghbundela committed Sep 2, 2023
commit 88fb02383999625c3fcbedbedacd803edfb4f0ea
12 changes: 7 additions & 5 deletions app/components/stepper-signup.hbs
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{{#if (eq this.currentStep 0)}}
<h1>Hello world</h1>
{{else if (eq this.currentStep 1)}}
<SignupSteps::StepOne @onChange={{this.handleInputChange}} />
{{/if}}
<OnboardingCard>
{{#if (eq this.currentStep 0)}}
<h1>Hello world</h1>
{{else if (eq this.currentStep 1)}}
<SignupSteps::StepOne @onChange={{this.handleInputChange}} />
{{/if}}
</OnboardingCard>