3d Image Slider with Carousel using HTML & CSS
In this article, you will learn how to create 3d Image Slider using only HTML and CSS. In the case of ordinary image sliders, we use JavaScript or JQuery to…
In this article, you will learn how to create 3d Image Slider using only HTML and CSS. In the case of ordinary image sliders, we use JavaScript or JQuery to…
In this article, I have shown how Image Comparison Slider is created using HTML, CSS, and JavaScript. Earlier I shared with you how to create different types of image galleries…
In this article, I am going to show you how to create a pop-up login form using HTML and CSS. You must have seen different types of websites or applications…
Text Typing Animation or typewriter makes the homepage of any website much more beautiful and attractive. There are many ways to make the homepage interesting, among them CSS text typing…
In today's article, you are going to learn how to create a simple dropdown menu bar using HTML and CSS code. If you are looking for good Websites & SEO Company…
This is an easy tutorial where you will learn how to create a Gradient Button using CSS. You will see this type of Gradient Button or Gradient text on different…
A circular Progress Bar is an interesting web element that is used to show the progress of something. This type of Progress Bar is used in different types of websites…
Glassmorphism Login Form is currently gaining much popularity for this beauty. CSS Glassmorphism is a UI design that is basically like a transparent design. However, in this case, the background…
Automatic Image Slider You must have seen it on many websites. This type of automatic slider is used on the homepage or gallery of various websites. In this tutorial, I…
In this article, you are going to learn how to create a password validation using JavaScript, HTML, and CSS. Earlier I showed how to create an email validation design.
Javascript password validation is a very important design for web designers. This type of password validation is used when registering on different types of websites. This allows the user to input his password correctly. Many times the user types the password incorrectly so the user cannot log in to his account later.
Here the user will retype his character. If the two passwords are confirmed, that is, the same, then the user can create an account. The same way I made this design. There are two input boxes here.
If the two passwords entered by the user are the same then a message will appear here. With the help of that message, the user will understand that his two passwords have been confirmed.
If the two passwords are not the same then an error message will appear here. Below is a live demo that will help you learn how this JavaScript password validation system works.
See the Pen
Password Validation by Foolish Developer (@fghty)
on CodePen.
Now is the time to learn something about this design. First I created a box on the webpage where everyone has a title and two inputs. The first place to input the password, the second place to input the password. There is a submit button at the end of all.
Below I have shared the complete tutorial on how I created this JavaScript password validation system. Before sharing the tutorial, I would like to tell you some points about the codes. This form has been created with the help of HTML and CSS.
However, some amount of JavaScript has been used to show different types of error messages. As I said before if the password matches, a green signal will be given and a message will be shown.
If the password is incorrect, an error message will appear and the user will be warned that the password is incorrect. I used the input function of HTML to create two input spaces.
I designed the webpage using the CSS below. Here linear-gradient has been used for the background color of the webpage I have made the gradient.
I used the following HTML and CSS code to create the background. I have basically created a box on the web page using the following codes. I have used the width of this box 400 px and the background color is white. I used box-shadow to create a shadow around it.
I have created a title using the following codes. As you can see, the first title is used here. I used font-size: 27px to determine the size of this title. Text-align: center is used to center text.
Now we have created the space to input using the following HTML and CSS code. I have used the input function of HTML to replace the input.
Now I have created a place to view the error message. When you click on the submit button after entering the password, an error message will appear. I used these codes to make it. However, the message will not be seen in normal conditions.
This will be seen when we implement it with the help of JavaScript. font-size: 14px and color black used. No specific background color is used here. This background color will determine whether your message has been corrected or not.
Now I have created a submit button using the following codes. The background color of the button is blue and the font size is 18 px.