-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
119 lines (114 loc) · 3.86 KB
/
index.html
File metadata and controls
119 lines (114 loc) · 3.86 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- 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>intro</title>
<meta name="description" content="">
<meta name="author" content="PC-164">
<meta name="viewport" content="width=device-width; initial-scale=1.0">
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="../javascripts/modernizr.js"></script>
<script src="../javascripts/index.js"></script>
<link rel="stylesheet" type="text/css" href="../stylesheets/index.css">
</head>
<script>
function FindPassword(){
var popUrl = "/FindPassword";
//팝업창에 출력될 페이지 URL
var popOption = "width=400, height=250, resizable=no, left=middle, top=middle";
//팝업창 옵션(optoin)
window.open(popUrl, "", popOption);
}
</script>
<body>
<div id="head-bar">
<h1 id="logo">Grouping</h1>
</div>
<div id="pagination">
<div class="shortcut selected" id="1">
●
</div>
<div class="shortcut " id="2">
●
</div>
<div class="shortcut " id="3">
●
</div>
<div class="shortcut " id="4">
●
</div>
<div class="shortcut " id="5">
●
</div>
<div class="shortcut " id="6">
●
</div>
</div>
<div id="wrapper">
<div id="page-1" class="page">
<div class="page-content">
<h1>Grouping</h1>
<div id="toggle_login" class="toggle active">
<div class="name">
로그인
</div><br>
<div class="underbar"></div>
</div>
<div id="toggle_signup" class="toggle">
<div class="name">
가입하기
</div><br>
<div class="underbar"></div>
</div>
<form id="formLogin" class="form" 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" onclick="abc();" value="로그인"><br>
<a id="pwfind" href="javascript:void();" onclick="FindPassword(); return false">비밀번호 찾기</a><br>
</form>
<form id="formAddUser" class="form" name="register" method="post" action="/SignUp">
<input type="text" id="inputUserEmail" name="useremail" placeholder="이메일"><br>
<div id="email_msg" class="alertmsg">이미 사용중인 이메일 입니다!</div>
<input type="text" id="inputUserName" name="username" placeholder="이름"><br>
<input type="password" id="inputPassword" name="userpassword" placeholder="비밀번호"> <br>
<input type="password" id="rePassword" name="eq" placeholder="비밀번호확인"><br>
<div id="pw_msg" class="alertmsg">비밀번호가 일치하지 않습니다!</div>
<input type="submit" id="btnSubmit" value="회원가입"> <br>
</form>
</div>
</div>
<div id="page-2" class="page">
<div class="page-content">
<h1>해야할 일을 함께 확인하고
<br>
달력으로 간편하게 보세요</h1>
</div>
</div>
<div id="page-3" class="page">
<div class="page-content">
<h1>프로젝트 채팅과 함께
<br>
업무를 확인하세요</h1>
</div>
</div>
<div id="page-4" class="page">
<div class="page-content">
<h1>팀원들과 파일을 공유하세요</h1>
</div>
</div>
<div id="page-5" class="page">
<div class="page-content">
<h1>필요한 인재를 찾아보세요</h1>
</div>
</div>
<div id="page-6" class="page">
<div class="page-content">
<h1>웹과 안드로에드에서 함께 사용하세요</h1>
</div>
</div>
</div>
</body>
</html>