-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path11_Cancel.html
More file actions
100 lines (88 loc) · 2.87 KB
/
11_Cancel.html
File metadata and controls
100 lines (88 loc) · 2.87 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
<!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>Reservation cancel</title>
<style>
.navbar{
background-color: #e6eaaa;
font-size: auto;
}
.navbar-right{
font-color:white ;
}
h2,h3{
text-align :center;
font-weight: bold;
}
em{
color: red;
font-weight: bold;
}
.divider{
width: 300px;
height: auto;
display: inline-block;
}
#icon_color{
color: orange;
}
.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;
}
</style>
</head>
<body>
<nav class="navbar navbar-default">
<div class="navbar-header">
<a class="navbar-brand" id="link3">Cancel</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="10_Selectreservation.html">
<span class="glyphicon glyphicon-book" id="icon_color"></span> 예약확인/예약취소 </a></li>
</ul>
</div>
</div>
</nav>
<br>
<span style="line-height: 150px"><br></span>
<h2>예약을 취소하시겠습니까?</h2>
<span style="line-height: 150px"><br></span>
<div class="container" align="center">
<button type="button" class="btn btn-danger" >예</button>
<div class="divider"></div>
<button type="button" class="btn btn-danger"><a href="10_Selectreservation.html" style="color: white">뒤로가기</a></button>
</div>
<span style="line-height: 150px"><br></span>
<footer id="footer">
<div class="pull-left" > 가천대학교 산업경영공학과</div>
<div class="pull-right">Copyright (c) da_capo </div>
</footer>
</body>
</html>