-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path9_Finish.html
More file actions
129 lines (122 loc) · 3.69 KB
/
9_Finish.html
File metadata and controls
129 lines (122 loc) · 3.69 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
<!DOCTYPE html>
<html>
<head lang="en">
<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>
<title>information_of_reservation</title>
<style>
.navbar{
background-color: #e6eaaa;
font-size: auto;
}
table{
font-size : 18px;
width: 85%;
border-collapse: collapse;
}
table,th,td{
border: 1px solid grey;
padding: 10px;
text-align: center;
}
th{
background-color : #f8ffff;
font-weight: bold;
}
h2,h3{
text-align :center;
font-weight: bold;
}
p {
text-align: center;
}
.btn{
background-color: #ff8868;
width:20%;
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;
}
#icon_color{
color: orange;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="navbar-header">
<a class="navbar-brand" id="link3">FinishReservation</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>
<span style="line-height: 10px"><br></span>
<table align="center">
<tr>
<th>강의실</th>
<td>519호</td>
</tr>
<tr>
<th>예약자학번</th>
<td>201433298</td>
</tr>
<tr>
<th>예약자이름</th>
<td>이현주</td>
</tr>
<tr>
<th>동반사용자</th>
<td>201433272 서예지<br>201433289 홍길동</td>
</tr>
<tr>
<th>예약시간</th>
<td>13:00~15:00</td>
</tr>
<tr>
<th>사용목적</th>
<td>프로그램 입문 수업 발표 회의</td>
</tr>
<tr>
<th>사용승인</th>
<td>대기</td>
</tr>
</table>
<span style="line-height: 10px"><br></span>
<h3>예약이완료되었습니다</h3>
<p>강의실을 사용하기 전, 승인확인이 되었는지 확인 한 후 사용해 주시길 바랍니다.</p>
<span style="line-height: 10px"><br></span>
<div class="container" align="center">
<button type="button" class="btn btn-danger"><a href="6_Information.html" style="color: white">초기화면으로 돌아가기</a></button>
</div>
<span style="line-height: 40px"><br></span>
<footer id="footer">
<div class="pull-left" > 가천대학교 산업경영공학과</div>
<div class="pull-right">Copyright (c) da_capo </div>
</footer>
</body>
</html>