Untitled

 avatar
unknown
plain_text
2 years ago
722 B
6
Indexable
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>

<body>
    <center>
        <h1> Login Form </h1>
    </center>
    <form action="page1.php" method="GET">
        <div class="container">
            <label>Username : </label> <input type="text" placeholder="Enter Username" name="username" required>
            <label>Password : </label> <input type="password" placeholder="Enter Password" name="password" required>
            <button type="submit">Login</button>
        </div>
    </form>
</body>

</html>
Editor is loading...