File size: 2,717 Bytes
fd1e3ee
 
 
 
 
96b3478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fd1e3ee
 
96b3478
 
 
 
 
 
 
 
 
 
 
 
 
 
 
fd1e3ee
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <title>๋กœ๊ทธ์ธ</title>
    <style>
        body {
            font-family: "Spoqa Han Sans Neo", Arial, sans-serif;
            padding: 50px;
            background: linear-gradient(135deg, #ece9f7, #cacae0);
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
        }
        .container {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 32px #0001;
            width: 100%;
            max-width: 450px;
            box-sizing: border-box;
        }
        h1 {
            color: #6598e5;
            margin-bottom: 25px;
            text-align: center;
            font-size: 28px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #555;
            font-size: 16px;
        }
        input[type="text"],
        input[type="password"] {
            width: 100%;
            border-radius: 8px;
            border: 1px solid #d0d0e0;
            padding: 14px;
            font-size: 16px;
            background: #f7f7fb;
            box-sizing: border-box;
        }
        button {
            width: 100%;
            background: #6598e5;
            color: white;
            padding: 14px;
            border-radius: 8px;
            border: none;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: 0.2s;
            margin-top: 10px;
        }
        button:hover {
            background: #5540a3;
        }
        p {
            text-align: center;
            margin-top: 20px;
            color: #666;
        }
        a {
            color: #6598e5;
            text-decoration: none;
            font-weight: bold;
        }
        a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>๋กœ๊ทธ์ธ</h1>
        <form method="post">
            <div class="form-group">
                <label for="username">์‚ฌ์šฉ์ž ์ด๋ฆ„</label>
                <input type="text" id="username" name="username" required>
            </div>
            <div class="form-group">
                <label for="password">๋น„๋ฐ€๋ฒˆํ˜ธ</label>
                <input type="password" id="password" name="password" required>
            </div>
            <button type="submit">๋กœ๊ทธ์ธ</button>
        </form>
        <p>๊ณ„์ •์ด ์—†์œผ์‹ ๊ฐ€์š”? <a href="/signup">ํšŒ์›๊ฐ€์ž…</a></p>
    </div>
</body>
</html>