adduser.ejs 1.46 KB
<!DOCTYPE html>

<head>
    <meta charset="UTF-8">
    <title>입력</title>
    <link href="https://fonts.googleapis.com/css?family=Gugi&amp;subset=korean" rel="stylesheet">
</head>

<body>
    <style>
        button {
            position: absolute;
            left: 47.9%;
            top: 54%;
            font-size: 12px;
            width: 60px;
            height: 30px;
            background-color: #ffffff;
        }

        a.abc {
            font-size: 30px;
            font-family: Gugi;
            color: #8eb640;
            position: absolute;
            left: 2%;
            top: 2%;
        }

        a.nitoon {
            font-size: 36px;
            /* color: #8eb640; */
            font-family: Gugi;
            position: absolute;
            top: 37%;
            left: 40%;
        }

        input {
            width: 200px;
            height: 50px;
            font-size: 20px;
            font-family: Gugi;
            text-align: center;
            position: absolute;
            top: 45%;
            left: 42.5%;
        }

        body {
            background-image: url('/images/login_back.jpeg');
            background-size: cover;
        }
    </style>
    <a class="abc">
        니툰내툰
    </a>

    <a class="nitoon">
        이름을 입력하세요
    </a>
    <form method="post" action="/adduser/addtodb">
        <input type="text" name="username" placeholder="이름">
    <button> 제출 </button>
    </form>


</body>