Abhyudaya-SVVV / hacktoberfest

2 stars 32 forks source link

Introduction to Open Source - Login Page #3

Open Abhyudaya-SVVV opened 1 week ago

Abhyudaya-SVVV commented 1 week ago

This project helps students learn how to contribute to open source by resolving issues related to a simple login form. Below are the details of the login page and issues that beginners can resolve to improve the page.

About the Login Page

The login page consists of a form where users can enter their username and password to log in. Currently, there are some issues that need to be resolved, making it a great opportunity for beginners to contribute and learn.

Issues for Beginners to Resolve

1. Password is Visible

Currently, the password field (<input id="password">) does not have the type="password" attribute, so the password entered is visible as plain text. This needs to be fixed so that the password is hidden.

Location: In the <input> tag for the password in the form, add type="password" to hide the password input.


<input type="password" id="password" name="password" placeholder="Enter your password" required>
Pranith2003 commented 1 week ago

Please assign me this under hackoctoberfest24 @Abhyudaya-SVVV