loginmain.html
1.32 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
<!doctype html>
<html>
<head>
<title>KHU KHU Chat</title>
<meta charset="utf-8">
<link rel="stylesheet" href="mediaquery.css">
<link rel="stylesheet" href="style.css">
<style>
</style>
</head>
<body>
<h1><a href="main.html" color:black>KHU Chatting service</a></h1>
<img src="image/login.jpg" class="image">
<div id="grid">
<ol>
<li><a href="whatiskhuchat.html" class="saw">What is KHU chat? </a></li>
<li><a href="loginmain.html" class="saw">로그인</a></li>
<li><a href="signinmain.html" class="saw">회원가입</a></li>
<li><a href="question.html" class="saw">문의사항</a></li>
<li><a href="afterlogin.html" class="saw">로그인이후</a></li>
</ol>
<div id="article">
<h2>로그인 </h2>
<form class="formlogin" action="loginmain.html" method="post" id="login">
<label for="email">이메일:</label><br>
<input type="text" id="Email" name="email" placeholder="이메일을 입력하세요."><br>
<label for="password">비밀번호:</label><br>
<input type="password" id="password" name="password" placeholder="비밀번호를 입력하세요."><br><br>
<input type="submit" value="로그인">
<input type="button" value="회원가입" onclick="location.href='signinmain.html'">
</form>
</div>
</div>
</body>
</html>