Stripe Custom Styled Card Elements

If you are not satisfied with the pre styled components that Stripe provides then this post is for you. When we’re dealing with credit card payment sometimes we might want the credit card forms to match with our web application’s theme so that the user might have a good visual experience. They have a nice example on their Docs. We are going to do some form customization today. If you do not have an account with stripe create one and head over to the Dashboard and go to API keys section to grab your publishable key and secret key. [Read More]

Sign In with LinkedIn

Implementation of LinkedIn login in your application is pretty straight forward. There are a few solutions out there. Some are using passport.js which I very much dislike since it loads a lots of unwanted modules you don’t need and it is intended for the use of Express.js based frameworks which uses middleware approach. If you use some other frameworks then it will not be of much help. I will follow a more simplistic approach in this article following the Documentation. [Read More]