login.html 376 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<!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">
    <label>username: </label>
    <input type="text" name="username"><br/>
    <input type="password" name="password"><br/>
    <input type="submit">
</form>
</body>
</html>