This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPersonalProfile.html
55 lines (50 loc) · 1.76 KB
/
PersonalProfile.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>개인프로필 변경</title>
<link rel="stylesheet" href="/css/PersonalProfile.css" >
</head>
<body>
<header>
<nav>
<div id="grid">
<ul>
<li><a href="Main.html">back</a></li>
<li><a href="board.html">게시판</a></li>
<li><a href="pri_mento.html">채팅</a></li>
<li><a href="Login.html">로그인/회원가입</a></li>
</ul>
</div>
</nav>
</header>
<section>
<div class="profileContainer">
<img class="profileImage" src="ProfileImage.webp" />
<div class="profileInfo">
<input class="inputLabel" type="textarea" placeholder="personal information in one sentence">
</div>
</div>
<div class="infoInputContainer">
<div class="inputField">
<input class="inputLabel" type="text" placeholder="SCHOOL ID">
</div>
<div class="inputField">
<input class="inputLabel" type="text" placeholder="MAJOR">
</div>
<div class="inputField">
<input class="inputLabel" type="text" placeholder="HOBBY">
</div>
<div class="inputField">
<input class="inputLabel" type="text" placeholder="MBTI">
</div>
</div>
<!-- Log In Button -->
<div class="loginButton" ID="loginButton">
<p class="loginText" href="Main.html">Done ></p>
</div>
</div>
</section>
</body>
</html>