-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstep5.html
More file actions
81 lines (66 loc) · 2.39 KB
/
step5.html
File metadata and controls
81 lines (66 loc) · 2.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login</title>
<link rel="stylesheet" href="step5.css">
</head>
<body>
<div class="logo">
<ul>
<h1 id="logoLogo">STEP By STEP</h1>
<li><a href="" id="BodyCheck">In-Body Check</a></li>
<li><a href="" id="CommunityID">Stepmag</a></li>
<li><a href="" id="FitLooID">The Fit Loo</a></li>
<li><a href="" id="login">로그인</a></li>
<li><a href="" id="signup">회원가입</a></li>
</ul>
</div>
<div class="LoginPart">
<h2>Login</h2>
<div class="EmailPart">
<span id="email"><strong>이메일</strong></span>
<br>
<input type="email" placeholder="you@example.com" id="EmailText">
</div>
<div class="PWPart">
<span id="pw"><strong>비밀번호</strong></span>
<br>
<input type="password" placeholder="1234.!?" id="PWText">
</div>
</div>
<button type="submit" id="complete">완료</button>
<span id="noID">아직 계정이 없으시다면</span>
<a href="" id="FinalSignup">회원가입하기</a>
<div class="bottomBox">
<h2>step by step</h2>
<div class="sixF">
<p>(주)스텝바이스텝</p>
<p id="Building">step by step 본사</p>
<p id="BuildingValue">서울특별시 강남구 하윤미 빌딩</p>
</div>
<div class="fiveF">
<p>대표이사: 강하윤</p>
<p id="BuildingValue">사업자등록번호: 123-45-67890</p>
</div>
<div class="fourF">
<p>TEL: 02-134-5678</p>
<p id="fax">FAX : 02-134-5678</p>
<p id="health">step by step 헬스장</p>
<p id="healthValue">서울 특별시 강남점</p>
</div>
<div class="threeF">
<p>서울 특별시 잠실점</p>
</div>
<div class="twoF">
<p>개인정보처리방짐</p>
<p id="agree">이메일무단수집거부</p>
</div>
<div class="oneF">
<p>Copyright© 2025 by stepbystep Co., Ltd. All rights reserved.</p>
<img src="insta.png" alt="" id="insta">
</div>
</div>
</body>
</html>