Skip to content

Commit 941f951

Browse files
committed
login
1 parent 15883ee commit 941f951

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

LAB2/login.html

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
<p>
19+
비밀번호:
20+
<input type="password" placeholder="비밀번호" required>
21+
</p>
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

Comments
 (0)