-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (57 loc) · 2.2 KB
/
index.html
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="../assets/cloud.png" type="image/x-icon" />
<title>뜬 구름, 잡는 이야기...</title>
<link rel="stylesheet" href="css/reset.css" />
<link rel="stylesheet" href="css/login.css" />
<script src="https://code.jquery.com/jquery-3.7.1.min.js"
integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
</head>
<body>
<div class="page-container">
<div class="header-container">
<div class="page-header">
<h1 class="header-title">
<img src="./assets/cloud.png" alt="뜬 구름 아이콘" class="header-icon" />
<span class="header-text"> 뜬 구름 </span>
</h1>
</div>
</div>
<main class="main-content">
<div class="form-container">
<form class="login-form">
<input type="email" class="input-email" placeholder="이메일" />
<p class="email-helper-text hidden">*helper-text</p>
<input type="password" class="input-password" placeholder="비밀번호" />
<p class="password-helper-text hidden">*helper-text</p>
<div class="save-options">
<label class="save-id-label">
<input type="checkbox" class="save-id" /> 아이디 저장
</label>
<label class="save-password-label">
<input type="checkbox" class="save-password" /> 비밀번호 저장
</label>
</div>
<button class="login-button">로그인</button>
<div class="links">
<a href="/signup.html" class="signup-link">회원가입</a> |
<a href="#" class="find-account-link">계정 찾기</a> |
<a href="#" class="find-password-link">비밀번호 찾기</a>
</div>
</form>
</div>
</main>
<footer class="footer">
<p>© 2024 Rebo. All rights reserved.</p>
<p>
Contact me at:
<a href="mailto:resuable.park@gmail.com" class="contact-link">resuable.park@gmail.com</a>
</p>
</footer>
<script src="./js/login.js"></script>
</div>
</body>
</html>