-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuser.html
More file actions
38 lines (36 loc) · 825 Bytes
/
user.html
File metadata and controls
38 lines (36 loc) · 825 Bytes
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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<title>Infomation</title>
<link rel="stylesheet" href="css/user.css">
<script src="js/user.js"></script>
</head>
<body>
<div id="wrap">
<div id="header">
<div id="logo">
<a href="/main">
<img src="" alt="로고이미지">
</a>
</div>
<div id="menu">
</div>
</div>
<div id="info">
<div id="imgBox">
<img src="img/profileBasicImg.jpg" alt="프로필이미지">
</div>
<div>
<h2 id="name">이름 : </h2>
<li id="email">이메일 : </li>
<li id="phone">전화번호 : </li>
<li id="rank">등급 : </li>
</div>
<button id="user-list">유저 목록</button>
<button id="change-data">정보 수정</button>
<button id="logout">로그아웃</button>
</div>
</div>
</body>
</html>