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
/
SignUp.html
69 lines (59 loc) · 2.07 KB
/
SignUp.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
<!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/SignUp.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>
<div class="container">
<!-- Information Input -->
<div class="infoInputContainer">
<!-- Input Fields -->
<div class="inputField">
<input class="inputLabel" type="text" placeholder="ID">
</div>
<div class="inputField">
<input class="inputLabel" type="password" placeholder="PASSWORD">
</div>
<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>
<!-- Repeat for other input fields -->
</div>
<!-- Profile Settings -->
<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>
<!-- Log In Button -->
<div class="loginButton" class="loginButton">
<button clss="loginText" onclick="location.href='LogIn.html'">Ok let's go</button>
</div>
</div>
</body>
</html>