-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path8_Studentmember.html
More file actions
192 lines (183 loc) · 6.91 KB
/
8_Studentmember.html
File metadata and controls
192 lines (183 loc) · 6.91 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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
<!DOCTYPE html>
<html>
<head lang="en">
<meta charset="UTF-8">
<title>reserve information</title>
<title>sign up</title>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.2/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.10.2.js"></script>
<script src="//code.jquery.com/ui/1.11.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script>
$(function() {
var availableTags = [
"201433228 ㅇㅇㅇ",
"201433282 ㄱㄱㄱ",
"201543284 ㄴㄴㄴ",
"201512532 ㄷㄷㄷ",
"201235342 ㄹㄹㄹ",
"201542321 ㅁㅁㅁ",
"201234321 ㅂㅂㅂ",
"201123457 ㅅㅅㅅ",
"201043564 ㅈㅈㅈ",
"203153123 ㅊㅊㅊ",
"201928423 ㅋㅋㅋ",
"200981723 ㅌㅌㅌ",
"203948534 ㅍㅍㅍ",
"201119283 ㅎㅎㅎ",
"201938534 ㅏㅏㅏ",
"202273232 ㅑㅑㅑ",
"201236423 ㅓㅓㅓ",
"201847443 ㅕㅕㅕ",
"201351232 ㅗㅗㅗ",
"203124262 ㅛㅛㅛ",
"201928274 ㅜㅜㅜ",
"201483723 ㅠㅠㅠ"
];
function split( val ) {
return val.split( /,\s*/ );
}
function extractLast( term ) {
return split( term ).pop();
}
$( "#tags" )
// don't navigate away from the field on tab when selecting an item
.bind( "keydown", function( event ) {
if ( event.keyCode === $.ui.keyCode.TAB &&
$( this ).autocomplete( "instance" ).menu.active ) {
event.preventDefault();
}
})
.autocomplete({
minLength: 0,
source: function( request, response ) {
// delegate back to autocomplete, but extract the last term
response( $.ui.autocomplete.filter(
availableTags, extractLast( request.term ) ) );
},
focus: function() {
// prevent value inserted on focus
return false;
},
select: function( event, ui ) {
var terms = split( this.value );
// remove the current input
terms.pop();
// add the selected item
terms.push( ui.item.value );
// add placeholder to get the comma-and-space at the end
terms.push( "" );
this.value = terms.join( ", " );
return false;
}
});
});
x=0;
$(document).ready(function() {
$("").scroll(function () {
$("span").text(x += 1);
});
});
</script>
<style>
#information{
color:red ;
font-weight: bold;
font-size: 25px;
padding-top: 100px;
padding-left: 400px;
padding-bottom: 20px;
vertical-align:middle;
}
.navbar {
background-color: #e6eaaa;
font-size: auto;
}
#main{
font-weight: bold;
font-size: 25px;
padding-left: 430px;
padding-bottom: 95px;
vertical-align:middle;
}
.btn{
background-color: #ff8868;
width:15%;
font-size: 18px;
font-weight: bold;
height:auto;
text-align:center;
}
#link3{
color: white;
}
#footer {
font-size: 70%;
background-color: #e6eaaa;
font-weight: bold;
text-align: right;
margin: auto;
padding: 5px;
position: relative;
height: 20px;
}
p{
text-align: left;
font-size: 18px;
font-weight: bold;
}
#icon_color{
color: orange;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="navbar-header">
<a class="navbar-brand" id="link3">Studentmember</a>
</div>
<div class="container-fluid">
<div>
<ul class="nav navbar-nav navbar-right">
<li><a href="6_Information.html"><span class="glyphicon glyphicon-home" id="icon_color"></span> 이용안내</a></li>
<li><a href="3_Login.html"><span class="glyphicon glyphicon-off"id="icon_color"></span> 로그인</a></li>
<li><a href="14_listreservation.html">
<span class="glyphicon glyphicon-book" id="icon_color"></span> 예약확인/예약취소 </a></li>
</ul>
</div>
</div>
</nav>
<p id="information">* 세부사항을 입력해 주세요 *</p>
<div id="main">
<p>예약자 학번 : 201433298 (아이디)</p>
<p>예약자 이름 : 이 현 주</p>
<p>예약 시간 : 13 : 00 ~ 15 : 00</p>
<form action="cgi-bin/formsample.cgi" method="post" style="font-size: medium">
<p class="ui-widget" style="width:50%;">
<p>동반사용자 <input id="tags" size="44" style="overflow:scroll;"></p>
</p>
<p>사용 목적 :
<select>
<option value="study">스터디</option>
<option value="project">조별과제</option>
<option value="conference">과 회의</option>
<option value="other">기타</option>
</select>
<br>
</p>
<p style="padding-left: 90px"><input type="textarea" name="reason" id="reason" placeholder="기타 사유를 입력하세요" style="width:500px; height: 70px"></p>
</form>
</div>
<div class="container" align="center">
<button type="button" class="btn btn-danger"><a href="9_Finish.html" style="color: white;">예약완료</a></button>
</div>
<footer id="footer">
<div class="pull-left" > 가천대학교 산업경영공학과</div>
<div class="pull-right">Copyright (c) da_capo </div>
</footer>
</body>
</html>