-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path12_Cancel.html
More file actions
69 lines (67 loc) · 1.96 KB
/
12_Cancel.html
File metadata and controls
69 lines (67 loc) · 1.96 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
<!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>
<meta charset="utf-8">
<title>cancel</title>
<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">
<script>
$(function() {
$( "#dialog" ).dialog();
});
</script>
<title></title>
<style>
table{
font-size : 18px;
width: 85%;
border-collapse: collapse;
}
table,th,td{
border: 1px solid grey;
padding: 10px;
width: 400px;
}
th{
background-color : #f8ffff;
font-weight: bold;
text-align: center;
width: 200px;
}
h2{
text-align :center;
font-weight: bold;
}
.btn{
background-color: #ff8868;
width:15%;
font-size: 18px;
font-weight: bold;
height:auto;
text-align:center;
}
</style>
</head>
<body>
<table>
<tr>
<th>승인상태</th>
<td>취소</td>
</tr>
<tr>
<th>승인이유</th>
<td>예약하신 시간에 세미나가 진행됩니다.</td>
</tr>
</table>
<div class="container" align="center">
<button type="button" class="btn btn-danger" onclick="window.open('', '_self', ''); window.close();">확인</button>
</div>
</body>
</html>