loginmain.html
1.33 KB
<!doctype html>
<html>
<head>
<title>KHU KHU Chat</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style/style.css">
</head>
<body>
<h1><a href="main.html" color:black>KHU Chatting service</a></h1>
<img src="image/login.jpg" class="image">
<div class="media" id="grid">
<div id="category">
<ol class="center">
<li><a href="service/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>
<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>