login-try.html 467 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Login</title>
    <link rel="stylesheet" href="estilos/login.css"></link>
</head>
<body>
<form method="post" action="login">
    <h2 style="color:red;">username o password invalido</h2>
    <label>username: </label>
    <input type="text" name="username"><br/>
    <label>password: </label>
    <input type="password" name="password"><br/>
    <input type="submit">
</form>
</body>
</html>