-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.98 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 1.98 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>login</title>
<link rel="stylesheet" href="./login.css">
</head>
<body>
<main>
<div class="left-area">
<div class="left-img">
<img src="./img/field.jpg" alt="field">
</div>
<div class="left-text">
<p>농수로 관리 프로그램</p>
<p>농수로 관리를 위한 프로그램입니다.</p>
</div>
</div>
<div class="right-area">
<div class="right-top">
<h1>로그인</h1>
</div>
<form action="">
<fieldset>
<div class="id-box">
<label for="id">아이디</label>
<input type="text" name="id" id="id">
</div>
<div class="pwd-box">
<label for="pwd">비밀번호</label>
<input type="password" name="pwd" id="pwd">
</div>
</fieldset>
<div class="btn-box">
<button type="submit">로그인</button>
<button formaction="./sign-up.html">회원가입</button>
</div>
</form>
<div class="help-box">
<div class="help-box1">
<img style="width:40%;" src="./img/phone.png" alt="help call">
<span>문의하기</span>
</div>
<div class="help-box2">
<img style="width:45%;"src="./img/circle.png" alt="question circle">
<span>도움말</span>
</div>
</div>
</div>
</main>
</body>
</html>