There is no way to get your boyfriend's password without hacking into hotmail's database. I don't think you'll find anyone willing to do that, at least not for free, but good luck.
There is an html form element for password. Validation script for password doesn't differ from script of html text element
If he gives you his E-Mail and Password
An HTML web page can not be password protected on its own. This is a task better suited for a language such as PHP when combined with HTML forms. You could ask the user for a password, and if it is correct create a cookie. When the user visits the site, you can redirect them elsewhere if they don't have the cookie.
Set the type to password instead of text. For example: <input type="password" name="password">
For this, you can create a password textbox. See the link below.
<input type="text" /> That could be used for a username <input type="password" /> That could be used as a password.
You can just ask him, or you can just watch him carefully, and NOT mess with his private property. It's his password for a reason. It's not your personal play toy.
Input type, password can be used for putting passwords. It will make the inputs as bullets.
Insert this into your code:Password:Obviously you will have to have used other things correctly in your code for it to work.
zishy im probaly stuck what to do after the password and username is done
You would need to use PHP
Here’s a simple JSP code snippet for a login page: <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%> <!DOCTYPE html> <html> <head> <title>Login Page</title> </head> <body> <form action="LoginServlet" method="post"> <label for="username">Username:</label> <input type="text" id="username" name="username" required><br> <label for="password">Password:</label> <input type="password" id="password" name="password" required><br> <input type="submit" value="Login"> </form> </body> </html> This code creates a basic login form that submits user credentials to a servlet called LoginServlet for processing.