afterlogin.html
1.6 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
42
43
44
45
46
47
48
49
50
51
<!doctype html>
<html>
<head>
<title>KHU KHU Chat</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style/style.css">
<style>
</style>
</head>
<body>
<h1><a href="main.html" color:black>KHU Chatting service</a></h1>
<img src="image/welcome.jpg" class="image">
<div id="grid">
<div id="category">
<ol class="center">
<li><a class="dr-icon" href="service/whatiskhuchat.html" >What is KHU chat? </a></li>
<li><a class="dr-icon" href="loginmain.html" >로그인</a></li>
<li><a class="dr-icon" href="signinmain.html" >회원가입</a></li>
<li><a class="dr-icon" href="question.html" >문의사항</a></li>
<li><a class="dr-icon" href="afterlogin.html" >로그인이후</a></li>
</ol>
</div>
<div id="article">
<h2>로그인후 접속되는 페이지로 만들기</h2>
<form action="service/chatservice.html" id="chat">
<label for="chatservice">친구와 채팅하기</label>
<input type="submit" value="채팅">
</form>
<form action="service/makefriend.html" id="makefriend">
<label for="makefriend">친구만들기</label>
<input type="submit" value="친구만들기">
</form>
<form action="service/addfriend.html" id="addfriend">
<label for="makefriend">친구추가하기</label>
<input type="submit" value="친구추가하기">
</form>
<form action="randomchat.html" id="randomchat">
<label for="randomchat">랜덤채팅</label>
<input type="submit" value="랜덤채팅">
</form>
</div>
</div>
</body>
</html>