-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy paththanks.html
More file actions
87 lines (78 loc) · 3.25 KB
/
thanks.html
File metadata and controls
87 lines (78 loc) · 3.25 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
<!doctype html>
<html>
<head>
<base href="/" />
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="./css/bootstrap-datepicker.min.css">
<!-- Include roboto.css to use the Roboto web font, material.css to include the theme and ripples.css to style the ripple effect -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.3.0/css/ripples.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.3.0/css/material.min.css" rel="stylesheet">
<link href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.3.0/css/roboto.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<style>
html {
height: 100%;
}
body {
font-family: 'Roboto', sans-serif;
height: 100%;
background-color: white;
}
.row {
margin-right: 0;
}
.cart {
background-image: url('images/confirm.png');
background-size: cover;
background-repeat: no-repeat;
height: 283px;
}
.control-label {
border-bottom: solid 1px;
border-color: red;
}
.price {
text-align: right;
}
</style>
<link href='http://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.16/angular.min.js"></script>
<script src="flight.js"></script>
</head>
<body>
<div>
<div class="row">
<div class="col-xs-12 cart">
</div>
</div>
<div class="row">
<div class="col-xs-10 col-xs-offset-1">
<h2 style="text-align: center;padding-top:10%;">
Thanks for sharing!
<a href="maverick.html?budget=500&start=2015-06-28&end=2015-07-10" class="btn btn-material-green submit-btn shadow-z-2" style="margin-top: 10%;">Continue Exploring</a>
</h2>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/bootstrap-datepicker/1.4.0/js/bootstrap-datepicker.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/datejs/1.0/date.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.3.0/js/ripples.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-material-design/0.3.0/js/material.min.js"></script>
<script>
$(document).ready(function() {
// This command is used to initialize some elements and make them work properly
$.material.init();
});
/*$("#messageForm").submit(function(){// Let myform is id of your form
$(this).attr('action','http://destination.bizmate.space/api/sms/44'+$('#number').val()+'/budgets/500/starts/2015-06-28/ends/2015-07-10/destinations/GDC.json');
});*/
</script>
</body>
</html>