How To Create Login Page Using Html Css And Javascript

Web Development Software

Creating a login page is an essential part of many websites, as it allows users to access personalized content and ensures the security of their information. In this article, I will guide you through the process of creating a login page using HTML, CSS, and JavaScript.

HTML Markup

First, let’s start with the HTML markup. We’ll need a form that contains input fields for the username and password, as well as a submit button to submit the form.


<form id="login-form">
  <div class="form-group">
    <label for="username">Username:</label>
    <input type="text" id="username" name="username" required>
  </div>
  <div class="form-group">
    <label for="password">Password:</label>
    <input type="password" id="password" name="password" required>
  </div>
  <button type="submit" id="login-btn">Log In</button>
</form>

Here, we have used the “form” tag to create a form with the id “login-form”. Inside the form, we have two “div” elements with the class “form-group” to wrap the input fields. Each input field has a label associated with it for better accessibility. The username and password fields are of type “text” and “password”, respectively. We have also added the “required” attribute to ensure that both fields are filled before submitting the form.

CSS Styling

Now, let’s add some CSS styling to make our login page visually appealing. We’ll use CSS to arrange the form elements and apply styles to them.


#login-form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: 0 auto;

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 5px;
}

input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 3px;
}

#login-btn {
  padding: 10px 20px;
  background-color: #4CAF50;
  color: #fff;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

In the above CSS code, we have targeted the form element with the id “login-form” and applied the flexbox layout to it for easy alignment of form elements. We have also set a fixed width for the form and centered it horizontally using the “margin” property. The “form-group” class is used to add margin at the bottom of each form element. The labels are displayed as block elements with a margin-bottom for better spacing. The input fields have padding, border, and border-radius applied to them to make them visually appealing. Lastly, we have styled the login button with a background color, text color, and removed the default border.

JavaScript Validation

Now, let’s add JavaScript validation to our login page. We’ll use JavaScript to ensure that the username and password fields are not empty before submitting the form.


const loginForm = document.getElementById('login-form');
const usernameInput = document.getElementById('username');
const passwordInput = document.getElementById('password');

loginForm.addEventListener('submit', function(event) {
  if (usernameInput.value === '' || passwordInput.value === '') {
    alert('Please fill in all fields');
    event.preventDefault();
  }
});

In the JavaScript code above, we have selected the login form, as well as the username and password input fields using their respective ids. We have then attached an event listener to the form’s submit event. Inside the event listener, we check if either the username or password field is empty. If any of the fields are empty, we display an alert message and prevent the form from being submitted by calling the “preventDefault()” method on the event object.

Conclusion

Creating a login page using HTML, CSS, and JavaScript is an important skill for any web developer. By following the steps outlined in this article, you can create a secure and visually appealing login page that enhances the user experience. Remember to always validate user input on the server-side as well, for an extra layer of security. Happy coding!