-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
99 lines (97 loc) · 3.92 KB
/
profile.html
File metadata and controls
99 lines (97 loc) · 3.92 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
88
89
90
91
92
93
94
95
96
97
98
99
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="css/profile.css" />
<link rel="stylesheet" type="text/css" href="css/base.css" />
<title>edit profile</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: flex-start;
align-items: flex-start;
min-height: 100vh;
background-color: #efefef;
}
article {
width: 430px;
height: 932px;
background-color: #191919;
border-radius: 10px;
position: relative;
top: 0;
left: 0;
}
</style>
</head>
<body>
<article>
<header>
<div class="logo">
<img src="img/base.html_logo.svg" alt="로고이미지" />
</div>
<div class="title_line">
<div class="date" id="signup">회원정보 수정</div>
</div>
</div>
</header>
<form>
<section class="sec1">
<div class="box">
<p class="title">닉네임</p>
<div class="input_box">
<input type="text" id="nickname" class="nickname" placeholder="1자 이상 10자 이하 한글, 영어, 숫자 조합"></input>
<img src="img/signup.html_check.svg" alt="체크" class="valid" style="display: none;"/>
<img src="img/signup.html_error.svg" alt="X" class="invalid" style="display: none;"/>
</div>
</div>
<div class="box">
<p class="title">아이디</p>
<div class="input_box">
<input type="text" id="id" class="id" placeholder="6~10자"></input>
<img src="img/signup.html_check.svg" alt="체크" class="valid" style="display: none;"/>
<img src="img/signup.html_error.svg" alt="X" class="invalid" style="display: none;"/>
</div>
</div>
<div class="box">
<p class="title">이메일</p>
<div class="input_box">
<input type="email" id="email" class="email" placeholder="mimo@gmail.com"></input>
<img src="img/signup.html_check.svg" alt="체크" class="valid" style="display: none;"/>
<img src="img/signup.html_error.svg" alt="X" class="invalid" style="display: none;"/>
</div>
</div>
<div class="box">
<p class="title">비밀번호</p>
<div class="input_box">
<input type="password" id="password1" class="password" placeholder="8자 이상 영문, 숫자 조합"></input>
<img src="img/signup.html_check.svg" alt="체크" class="valid" style="display: none;"/>
<img src="img/signup.html_error.svg" alt="X" class="invalid" style="display: none;"/>
<img src="img/signup.html_clearpasswd.svg" alt="클리어" class="clear" id="clearPwd1"/>
<img src="img/signup.html_eyeclosed.svg" alt="토글" class="toggle" id="togglePwd1"/>
</div>
</div>
<div class="box">
<p class="title">비밀번호 확인</p>
<div class="input_box">
<input type="password" id="password2" class="password2" placeholder="비밀번호를 한 번 더 입력해주세요."></input>
<img src="img/signup.html_check.svg" alt="체크" class="valid" style="display: none;"/>
<img src="img/signup.html_error.svg" alt="크로스 이미지" class="invalid" style="display: none;"/>
<img src="img/signup.html_clearpasswd.svg" alt="클리어 이미지" class="clear" id="clearPwd2"/>
<img src="img/signup.html_eyeclosed.svg" alt="토글 이미지" class="toggle" id="togglePwd2"/>
</div>
</div>
</section>
<section class="sec2">
<div class="box">
<input type="submit" value="수정" id="submit"></input>
</div>
</section>
</form>
</article>
<script src="js/profile.js"></script>
</body>
</html>