-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile_correction.html
More file actions
52 lines (49 loc) · 1.69 KB
/
profile_correction.html
File metadata and controls
52 lines (49 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>profile correction</title>
<link rel="stylesheet" href="../static/css/profile_correction.css">
</head>
<body>
<div class="header">
<div>
<a href="main_page.html" class="logo">logo</a>
<div class="tagline">Why? py!</div>
</div>
</div>
<div class="main">
<div class="left">
<div class="pro">
<div class="photo">프로필사진</div>
<div class="nickname">닉네임</div>
</div>
</div>
<div class="right">
<div class="correction">회원 정보 수정</div>
<div class="box">
<div class="id">ID</div>
<input type="text" class="idbox"></input>
<div class="name">이름</div>
<input type="text" class="namebox"></input>
<div class="password">PASSWORD</div>
<input type="text" class="passwordbox"></input>
<div class="email">이메일</div>
<input type="text" class="emailbox"></input>
<div class="job">직종/분야</div>
<input type="text" class="jobbox"></input>
</div>
<div class="button">
<div class="button1">
<a href="./profile_main.html">취소</a>
</div>
<div class="button2">
<a href="#">완료</a>
</div>
</div>
</div>
</div>
</body>
</html>