adminLogin.html
1.87 KB
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FishBook : 관리자 로그인</title>
<link rel="stylesheet" href="css/user_login.css">
</head>
<body>
<div id="wrapper">
<div id="header">
<h1>
<a href="#">
<img src="image/fish-logo.png" alt="logo">
</a>
</h1>
</div>
<div id="container">
<div id="content">
<form>
<fieldset class="login_form">
<legend class="blind">로그인</legend>
<div class="input_row" id="id_area">
<span class="input_box">
<label for="id" id="label_id_area"></label>
<input type="text" id="id" name="id" class="int" placeholder="아이디" autofocus>
</span>
<!-- 취소 버튼-->
</div>
<div class="input_row" id="pw_area">
<span class="input_box">
<label for="pw" id="label_pw_area"></label>
<input type="text" id="pw" name="pw" class="int" placeholder="비밀번호">
</span>
<!-- 취소 버튼-->
</div>
<input type="submit" title="로그인" id="btn_login" alt="로그인" value="로그인">
</fieldset>
</form>
<div class="find_info">
<a href="#">아이디, 비밀번호 찾기</a>
<a href="#">회원가입</a>
</div>
</div>
</div>
</div>
</body>
</html>