-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathout.html
More file actions
87 lines (82 loc) · 3.44 KB
/
out.html
File metadata and controls
87 lines (82 loc) · 3.44 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
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Humanity</title>
<link rel="stylesheet" href = "css/style-3.css">
</head>
<body>
<div id = "container">
<!-- 상단 메뉴(헤더)-4개로 나눔 -->
<header>
<!-- 1. 로고 이미지 부분 -->
<a href = "main.html">
<img src = "images/logo.png" alt="휴머니티">
</a>
<!-- 2. 로고 humanity부분 -->
<div id = "logo">
<a href = "main.html">
<h2>HUMANITY</h2>
</a>
</div>
<nav>
<!-- 3. 게시판 이름 부분 -->
<ul id="topMenu">
<li>자유게시판</li>
<li>공지게시판</li>
<li>모집게시판</li>
<li>취업 정보</li>
<li>강의 후기</li>
<li>중고 거래</li>
</ul>
</nav>
<!-- 4. 오른쪽 상단 아이콘 부분 -->
<div id = "sub">
<input type="text" value=" search">
<a href = "privacy_main.html">
<img src = "images/privacy.png" alt="내 정보">
</a>
</div>
</header>
<!-- 본문 -->
<div id = "contents">
<!-- 회원 탈퇴 -->
<section>
<h1>회원 탈퇴</h1>
<div class="input">
<div class="label">
<label>계정 비밀번호</label>
</div>
<input type="password" maxlength="20" placeholder="새 비밀번호">
</div>
<div class="rules">
<p>
※ 탈퇴 및 가입을 반복할 경우, 서비스 악용 방지를 위해 재가입이 제한됩니다. 최초 탈퇴 시에는 가입 시점을 기준으로 1일간 제한되며, 2회 이상 탈퇴를 반복할 경우 30일간 제한됩니다.
</p>
<p>
※ 탈퇴 후 개인 정보, 시간표 등의 데이터가 삭제되며, 복구할 수 없습니다.<br>
※ 다시 가입하여도, 게시판 등 이용 제한 기록은 초기화되지 않습니다.<br>
※ 작성한 게시물은 삭제되지 않으며, (알수없음)으로 닉네임이 표시됩니다.<br>
※ 자세한 내용은 개인정보처리방침을 확인해주세요.
</p>
<input type="submit" value="회원 탈퇴">
</section>
</div>
<!-- 하단 정보(풋터) -->
<footer>
<div class="f_menu">
<ul>
<li><a href=><b>개인정보처리방침</b></a></li>
<li><a href=>커뮤니티 이용규칙</a></li>
</ul>
<div class="f_txt">
<p> <b>Creator|</b> Sangmyung University Department of Human Intelligence and Information Engineering<br>
<b>Developers|</b> Park sunghyun, Park yujin, An jisu, Yun subin, Han hotaek
</p>
</div>
</div>
</footer>
</div>
</body>
</html>