Saturday, January 23, 2021

Login Form Eaglesoft Web development class.

 


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome to Eaglesoft</title>
    <style>
        *{
            margin0px;
            padding0px;
        }
        #main
        {
            background-imageurl("https://wallpapercave.com/wp/u9AVLry.jpg");
            background-imageurl("https://i.pinimg.com/originals/20/c4/ed/20c4ed904c96d955c7baed21e22d47e0.jpg");
            background-sizecover;
            width100vw;
            height100vh;
            position:absolute;
        }
        #login
        {
            background-colorblanchedalmond;
            border-radius20px;
            width20vw;
            height50vh;
            margin-top200px;
            margin-left:530px;
        }
        #h1
        {
            background-colorwhite;
            background-imageurl("https://c2.staticflickr.com/2/1544/24128500842_485dea1a4c_o.png");
            background-size:cover;
            border-radius90px;
            width100px;
            height100px;
            position:absolute;
            margin-top5px;
            margin-left85px;
        }
        #username
        {
            margin-top120px;
            margin-left45px;
            margincenter;
            padding5px;
            border-radius30px;
        }
        #password
        {
            margin-top20px;
            margin-left45px;
            margincenter;
            padding5px;
            border-radius30px;
        }
        #submit
        {
            background-color:blue;
            color:white;
            font-weightbolder;
            margin-top10px;
            margin-left90px;
            margincenter;
            padding5px;
            border-radius30px;
            width90px;
        }
        #forget
        {
            position:absolute;
            margin-left50px;
            margin-top20px;
            color:blue;
        }
    </style>
</head>
<body>
    <div id="main">
        <div id="login">
            <div id="h1"></div>
            <form>
            <input type="text" id="username" name="username" placeholder="Username" aligin="center">
            <input type="password" id="password" name="password" placeholder="password">
            <input type="submit" id="submit" name="submit" value="Login">
            <br>
            <i id="forget">Forget Password? Regiser</i>
          </form>
        </div>
    </div>
</body>
</html>

No comments:

Post a Comment