-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html.ori
74 lines (70 loc) · 2.75 KB
/
index.html.ori
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
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script src="./javascripts/index.js" >
</script>
<!-- Always force latest IE rendering engine (even in intranet) & Chrome Frame
Remove this if you use the .htaccess -->
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>login_signup</title>
<meta name="description" content="">
<meta name="author" content="PC-164">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<script src="/socket.io/socket.io.js"></script>
<script src="https://cdn.socket.io/socket.io-1.2.0.js"></script>
<!-- Replace favicon.ico & apple-touch-icon.png in the root of your domain and delete these references -->
<link rel="shortcut icon" href="/favicon.ico">
<link rel="apple-touch-icon" href="/apple-touch-icon.png">
<style type = "text/css">
body {
color: #FFFFFF;
font-family: '함초롬돋움';
font-size: 1em;
line-height: 20px;
text-align: center;
background: #2B5075;
}
button, input[type="submit"]{
background: #666666;
color: #FFFFFF;
border: 0;
padding: .4em;
}
#formLogin, #formAddUser{
width: 15em;
height: 10em;
padding: 2em;
margin: 1em auto;
background: #5CD6D6;
backface-visibility: hidden;
}
#formAddUser{
background: #69E693;
position: relative;
top: -15em;
transform: rotateY(180deg);
}
</style>
</head>
<body>
<div>
<header>
<h1>망고</h1>
</header>
<button id="toggle" name="login">회원가입</button>
<form id="formLogin" name="login" method="post" action="/SignIn">
<input type="text" id="User_Email" name="loginname" placeholder="계정"><br>
<input type="password" id="User_Pass" name="loginpassword" placeholder="비밀번호"><br>
<input type="submit" id="login_btn" value="로그인">
</form>
<form id="formAddUser" name="register" method="post" action="/SignUp">
<input id="inputUserEmail" type="text" placeholder="useremail" name="useremail"><br>
<input id="inputUserName" type="text" placeholder="username" name="username"><br>
<input id="inputPassword" type="password" placeholder="userpassword" name="userpassword"><br>
<input id="btnSubmit" type="submit" value="회원가입">
</form>
</div>
</body>
</html>