Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
JunYuHuang committed Apr 9, 2023
1 parent 781c9ab commit 72bfeec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This is a simple login form made with vanilla JavaScript, HTML, and CSS. Your jo

~~1. [Fix Logo Rendering Issue](https://github.com/developer-job-simulation/vanilla-login-form/issues/2)~~
~~1. [Add HTML Email Validation to Email Input](https://github.com/developer-job-simulation/vanilla-login-form/issues/3)~~
1. [Update HTML Password Input to Hide Password Visibility](https://github.com/developer-job-simulation/vanilla-login-form/issues/4)
~~1. [Update HTML Password Input to Hide Password Visibility](https://github.com/developer-job-simulation/vanilla-login-form/issues/4)~~
1. [Adjust CSS so that form is centered on page](https://github.com/developer-job-simulation/vanilla-login-form/issues/5)
1. [Validate User Credentials & show validation status message](https://github.com/developer-job-simulation/vanilla-login-form/issues/6)

Expand Down
3 changes: 1 addition & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,7 @@
<label for="email">Email</label>
<input id="email" type="email" placeholder="Enter your email" />
<label for="password">Password</label>
<!-- TODO: Update HTML Password Input to Hide Password Visibility -->
<input id="password" type="text" placeholder="Enter your password" />
<input id="password" type="password" placeholder="Enter your password" />
<button>Submit</button>
</form>
</body>
Expand Down

0 comments on commit 72bfeec

Please sign in to comment.