forked from yun0329/FrontEnd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditProfile.html
100 lines (95 loc) · 3.63 KB
/
editProfile.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
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
100
<!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">
<link rel="stylesheet" href="css/editProfile.css">
<link rel="icon" href="img/logo.png">
<script src="js/editProfile.js"></script>
<script src="https://kit.fontawesome.com/ba49d39b5e.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.7.0.js"></script>
<title>소확행</title>
</head>
<body>
<!--상단 네비게이션 바-->
<nav class="navbar">
<div class="navbar_logo">
<img src="img/logo.png" alt="로고">
<a href="#" class="service_name">소확행</a>
</div>
<div class="search-mode">
<div class="search_icon">
<i class="fas fa-search"></i>
</div>
<input type="text" class="inputbox" placeholder="가게를 검색해보세요">
</div>
<ul class="navbar_menu">
<p class="icon_name"><span>소</span>상공인·<span>소</span>비자에게 <span>확</span>실한 <span>행</span>복</p>
</ul>
<ul class="navbar_icon">
<li><p><i class="fa-regular fa-user" onclick="toggleUserPanel()"></i></p></li>
</ul>
</nav>
<!-- 하단 카테고리 네비게이션 바 -->
<nav class="bottom_navbar">
<ul class="bottom_navbar_menu">
<li><a href="#">혼밥</a></li>
<li><a href="#">가성비</a></li>
<li><a href="#">가족</a></li>
<li><a href="#">애견</a></li>
<li><a href="#">뷰</a></li>
<li><a href="#">데이트</a></li>
</ul>
</nav>
<div class="container">
<div class="image-container">
<img src="img/page.png" alt="page">
<div class="text-container">
<h2>마이페이지 > 회원정보 수정</h2>
</div>
</div>
</div>
<div class="line"></div>
<div class="curved-box">
<div class="writeReview_container">
<input
type="file"
accept="image/*"
id="input_image"
style="display: none"
/>
<div class="image-label-container">
<img id="image_preview" alt="." />
<label for="input_image" class="attach_button">프로필 수정하기</label>
</div>
</div>
<p class="username-text">아이디님</p>
<div class="login_body_box">
<div class="login_body_id">
<div class ="box">
<h3>아이디</h3>
</div>
<input type="email" id="username" name = "username" placeholder="사용중인 아이디*" />
</div>
<div class="login_body_pw">
<div class ="box">
<h3>비밀번호</h3>
</div>
<input type="password" id="password" name = "password" placeholder="변경할 비밀번호 입력하세요"/>
</div>
<div class="login_body_email">
<div class ="box">
<h3>이메일</h3>
</div>
<input type="email" id="email" name = "email" placeholder="사용중인 이메일 *"/>
</div>
<div class="login_bt_wrap">
<button type="button" onClick="onSubmitLogin_cbv();">수정하기</button>
<input id = "form_submit" type = "submit" style = "display:none">
</div>
</div>
</div>
</body>
<script src="js/editProfile.js"></script>
</html>