We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 15883ee commit 941f951Copy full SHA for 941f951
1 file changed
LAB2/login.html
@@ -0,0 +1,30 @@
1
+<!DOCTYPE html>
2
+<html lang="ko">
3
+<head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>login</title>
7
+ <link rel="stylesheet" type="text/css" href="main.css">
8
+</head>
9
+<body>
10
+ <h2>로그인 창</h2>
11
+ <button onclick="location.href='signup.html'">회원가입</button>
12
+
13
+ <div class="form-box">
14
+ <p>
15
+ 아이디:
16
+ <input type="text" placeholder="아이디" required>
17
+ </p>
18
19
+ 비밀번호:
20
+ <input type="password" placeholder="비밀번호" required>
21
22
23
24
+ <button type="submit" class="button-login">로그인</button>
25
+ <button type="submit" class="button-cancel">취소</button>
26
27
+ </div>
28
29
+</body>
30
+</html>
0 commit comments