-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path13_Master.html
More file actions
170 lines (161 loc) · 5.1 KB
/
13_Master.html
File metadata and controls
170 lines (161 loc) · 5.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Master page</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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>
<style>
.navbar{
background-color: #e6eaaa;
font-size: auto;
}
.navbar-right{
font-color:white ;
}
table{
font-size : 16px;
width: 95%;
border-collapse: collapse;
}
table,th,td{
border: 1px solid grey;
text-align: center;
height: 20px;
}
tr{
height: 50%;
}
th{
background-color : #f8ffff;
font-weight: bold;
}
option{
font-size: 14px;
text-align: center;
}
#icon_color{
color: orange;
}
.btn{
background-color: #ff8868;
width:15%;
font-size: 18px;
font-weight: bold;
height:auto;
text-align:center;
}
#link3{
font-size: 30px;
color: white;
}
#footer {
font-size: 70%;
background-color: #e6eaaa;
font-weight: bold;
text-align: right;
margin: auto;
padding: 5px;
position: relative;
height: 20px;
}
h2{
text-align :center;
font-weight: bold;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="navbar-header">
<a class="dropdown-toggle" data-toggle="dropdown" id="link3" href="#"> Master<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="13_Mastertime.html">시간관리</a></li>
<li><a href="#">신입생관리</a></li>
<li><a href="13_Master.html">예약확인상황</a></li>
</ul>
</div>
<div class="container-fluid">
<div>
<ul class="nav navbar-nav navbar-right">
<li><a href="#"><span class="glyphicon glyphicon-retweet" id="icon_color"></span> 초기화 </a></li>
<li><a href="#"><span class="glyphicon glyphicon-user" id="icon_color"></span> 로그아웃 </a></li>
</ul>
</div>
</div>
</nav>
<span style="line-height: 50px"><br></span>
<table align="center">
<tr>
<th>강의실</th>
<th>예약자ID</th>
<th>예약자</th>
<th>예약날짜</th>
<th>예약시간</th>
<th>동반사용자</th>
<th>사용목적</th>
<th>승인확인/승인취소</th>
<th>취소이유</th>
</tr>
<tr>
<td>519호</td>
<td>201433298</td>
<td>이현주</td>
<td>2015-03-03 Mon</td>
<td>13:00-15:00</td>
<td>201433272 서예지<br>201433289 홍길동</td>
<td>프로그래밍 입문 수업 발표 회의</td>
<td>
<div class="container" style="width: auto">
<form role="form">
<div class="form-group" style="padding-top:25px"align="center">
<select class="form-control" id="sel1" style="width: auto">
<option>선택해주세요</option>
<option>승인확인</option>
<option>승인취소</option>
</select>
<br>
</div>
</form>
</div>
</td>
<td><input type="text" style="width: auto"></td>
</tr>
<tr>
<td>504호</td>
<td>201433272</td>
<td>서예지</td>
<td>2015-03-04 Wed</td>
<td>15:00-17:00</td>
<td></td>
<td></td>
<td>
<div class="container" style="width: auto">
<form role="form">
<div class="form-group" style="padding-top:25px"align="center">
<select class="form-control" id="sel1" style="width: auto">
<option>선택해주세요</option>
<option>승인확인</option>
<option>승인취소</option>
</select>
<br>
</div>
</form>
</div>
</td>
<td><input type="text" style="width: auto"></td>
</tr>
</table>
<span style="line-height: 300px"><br></span>
<div class="container" align="center">
<button type="button" class="btn btn-danger" onclick="self.close()">확인</button>
</div>
<span style="line-height: 50px"><br></span>
<footer id="footer">
<div class="pull-left" > 가천대학교 산업경영공학과</div>
<div class="pull-right">Copyright (c) da_capo </div>
</footer>
</body>
</html>