SIMPLE LOGIN FORM
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML Example</title>
</head>
<body>
    <h1>Login to the system</h1>
	<form>
		<div>
			<label for="username">Username:</label>
			<input type="text" id="username" name="username">
		</div>
		<br/>
		<div>
			<label for="pass">Password </label>
			<input type="password" id="pass" name="password">
		</div>
		<br/>
		<input type="submit" value="Sign in">
	</form>
</body>
</html>