-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathauth.html
More file actions
60 lines (54 loc) · 1.95 KB
/
Copy pathauth.html
File metadata and controls
60 lines (54 loc) · 1.95 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 name="viewport" content="width=device-width, initial-scale=1" />
<title>WDB 날씨 서비스 - 로그인/회원가입</title>
<link rel="stylesheet" href="./auth.css" />
</head>
<body>
<header class="site-header">
<h1>WDB 날씨 서비스</h1>
<p class="sub">사용자 맞춤 지역 기반 기상예보</p>
</header>
<main class="auth-container">
<!-- CSS-Only Tabs -->
<input type="radio" name="auth-tab" id="tab-login" class="visually-hidden" checked />
<input type="radio" name="auth-tab" id="tab-signup" class="visually-hidden" />
<div class="tabbar">
<label for="tab-login">로그인</label>
<label for="tab-signup">회원가입</label>
</div>
<section class="panel panel-login">
<form method="post" action="./login.php">
<div class="field">
<label for="login-id">아이디</label>
<input id="login-id" name="uid" type="text" required />
</div>
<div class="field">
<label for="login-pw">비밀번호</label>
<input id="login-pw" name="pwd" type="password" required />
</div>
<button class="primary" type="submit">로그인</button>
</form>
</section>
<section class="panel panel-signup">
<form method="post" action="./signup.php">
<div class="field">
<label for="reg-name">아이디</label>
<input id="reg-name" name="uid" type="text" required />
</div>
<div class="field">
<label for="reg-pw">비밀번호</label>
<input id="reg-pw" name="pwd" type="password" required />
</div>
<div class="field">
<label for="reg-pw2">비밀번호 확인</label>
<input id="reg-pw2" name="pwd_confirm" type="password" required />
</div>
<button class="primary" type="submit">회원가입</button>
</form>
</section>
</main>
</body>
</html>