Friday, January 15, 2021

Login Form with Eaglesoft Programmers


<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        *
        {
            margin: 0px;
            padding: 0px;
        }
        body
        {
            background-image: 
            url("https://cutt.ly/7jRFJGq");
            background-repeat: no-repeat;
            background-size:cover;        }

        #main
        {
            background-color: rgb(24, 9, 224);
            border-radius: 50px 5px 50px 5px;
            box-shadow:4px 4px 8px rgb(97, 81, 81);
            width: 20vw;
            height: 50vh;
            margin: auto;
            margin-top: 100px;
            margin-left: 650px;
            position:absolute;
        }
        #main:hover
        {
            box-shadow:6px 6px 10px rgb(97, 81, 81);
        }
        #loginnow
        {
            color:rgb(238, 226, 54);
            font-weight: bold;
            font-size: 28px;
            text-shadow: greenyellow;
            text-align: center;
            margin-top: 60px;
            text-shadow: 2px 2px rgb(236, 57, 57);
        }
        .input
        {
            margin-left: 80px;
            margin-top:4px;
            width: 180px;
            height: 20px;
            color: white;
        }
        #button
        {
            background-color:yellow;
            margin-left: 135px;
            margin-top: 10px;
            width: 60px;
            height: 30px;
            color:brown;
            font-weight: bold;
            border-radius: 5px;
        }
        #button:hover
        {
            box-shadow: 1px 1px 1px 2px white;
            width: 62px;
            height: 32px;
        }
    </style>
</head>
<body>
    <div id="main">
        <H3 id="loginnow">Login Now</H3>
        <b class="input">User Name</b>
        <input type="text" placeholder="Username" class="input">
        <b class="input">Password</b>
        <input type="password" placeholder="Password" class="input">
        <br>
        <button id="button">Login</button>
    </div>
</body>
</html>

No comments:

Post a Comment