-
Notifications
You must be signed in to change notification settings - Fork 264
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
295쪽에서 설명한 reg.html이 누락되어 있었네요. 추가합니다.
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="ko"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<link rel="stylesheet" href="css/login.css"> | ||
<title>회원 가입</title> | ||
</head> | ||
<body> | ||
<div id="container"> | ||
<h3>로그인</h3> | ||
<form> | ||
<div id="login_input"> | ||
<input type="text" autofocus placeholder="아이디"> | ||
<input type="password" placeholder="비밀번호"> | ||
</div> | ||
<div id="login_bttn"> | ||
<button type="submit" class="order">로그인</button> | ||
</div> | ||
</form> | ||
</div> | ||
</body> | ||
</html> |