-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathprofile-edit.html
More file actions
62 lines (61 loc) · 1.93 KB
/
profile-edit.html
File metadata and controls
62 lines (61 loc) · 1.93 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="apple-touch-icon" href="/img/logo.png" />
<link rel="manifest" href="/manifest.json" crossorigin="anonymous" />
<script
src="https://kit.fontawesome.com/168f1e1640.js"
crossorigin="anonymous"
></script>
<script src="./static/profile-edit.js"></script>
<title>sickretCare</title>
</head>
<body>
<div class="header-nav">
<a href="./mypage.html" class="arrow-left"
><i class="fa-solid fa-chevron-left"></i
></a>
<span class="title">개인 정보 수정</span>
<span class="spacer"></span>
</div>
<div class="main-content">
<div class="form-group">
<div class="form-label-group">
<label class="form-label">별명</label>
<span id="nickname-msg-2">*이미 존재하는 별명이에요.</span>
</div>
<input
type="text"
class="form-input"
placeholder="별명을 입력해주세요. "
/>
</div>
<div class="form-group">
<div class="form-label-group">
<label class="form-label">기존 비밀번호</label>
<span id="pw-msg-3">*비밀번호가 틀렸어요.</span>
</div>
<input
type="password"
class="form-input"
placeholder="비밀번호를 입력해주세요. "
/>
</div>
<div class="form-group">
<div class="form-label-group">
<label class="form-label">새로운 비밀번호</label>
<span></span>
</div>
<input
type="password"
class="form-input"
placeholder="비밀번호를 입력해주세요. "
/>
</div>
<button class="profile-edit-btn">변경하기</button>
</div>
</body>
</html>