-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsecession.html
53 lines (51 loc) · 1.85 KB
/
secession.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>탈퇴하기</title>
<script src="javascript/info.js"defer></script>
<style>
#secession header a{
text-decoration: none;color:black;font-family: 돋움;opacity: 0.7;
}
#secession header h1{
font-size: 50px;text-align: center;
}
#secession{
width:500px;margin:10px;font-size:12px;
}
.secession {
border:1px solid #c3200e;z-index: 2;background-color: white;padding:20px;
}
.secession h1{font-weight: lighter;}
#pw{
width:410px;padding:10px;border: 1px solid #888888;outline: none;margin:10px;
}
/*탈퇴하기 버튼*/
.secession button{
width:450px;background-color: #c3200e; color:white;padding:10px;border: none;
}
@media (max-width:768px)and (min-width:320px){
#secession{width:95%;}
.secession {padding:5%;}
#pw{width:90%;margin:10px auto;}
.secession button{width:95%;}
}
</style>
</head>
<body>
<section id="secession">
<header>
<h1><a href="http://sjucomme.cafe24.com/index">위세종<span>wesju</span></a></h1>
</header>
<div class="secession">
<h1>탈퇴하기</h1>
<label for="cb">채팅, 알림 내역이 모두 사라지며 글 쓴 내용에 대한 권한이 없어지는 것을 인지하고 있고 이에 동의합니다. 또한, 재가입 시 동일 아이디는 사용하실 수 없습니다.</label><input type="checkbox" id="scb">
<input id="pw" type="password" placeholder="비밀번호 입력"/>
<button onclick="secession_cb()">탈퇴하기</button>
</div>
</section>
</body>
</html>