-
Notifications
You must be signed in to change notification settings - Fork 0
/
wedding_details.php
114 lines (95 loc) · 3.29 KB
/
wedding_details.php
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
<?php include 'admin/include/init.php'; ?>
<?php
$id = $_GET['id'];
$blogspot = EventWedding::find_by_id($id);
?>
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Wedding Planner</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto" rel="stylesheet">
<link rel="stylesheet" type="text/css"
href="https://cdn.materialdesignicons.com/2.1.19/css/materialdesignicons.min.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap-datepicker.css">
<style>
body {
margin-top: 6%;
}
.navbar-light .navbar-brand {
color: #1a1a1a;
font-weight: bold;
line-height: 22px;
}
.navbar {
font-weight: 700;
padding: 12px;
font-style: normal;
font-size: 14px;
text-transform: uppercase;
color: black;
border-bottom: 1px solid #ddd;
}
li.nav-item > a.nav-link {
color: black !important;
font-weight: bold !important;
}
#review {
font-size: 16px;
font-weight: bold;
margin-right: 5px;
}
.navbar-expand-lg .navbar-nav .nav-link {
padding-right: .9rem;
}
.navbar-brand {
margin-left: 20px;
width: 200px;
}
img.img-fluid.img-custom {
width: 344px;
height:230px;
}
.btn.btn-sm.btn-light.active:hover {
background: white;
}
.list-group-item:first-child {
border-top-left-radius: 0rem;
border-top-right-radius: 0rem;
}
</style>
</head>
<body>
<?php include 'include/nav.php'; ?>
<div class="container">
<div class="row">
<div class="col-md-12 p-0" style="margin-bottom: 20px;"> <!-- border:1px solid rgba(0,0,0,.125) -->
<h3 class="h5 text-uppercase text-center text-muted mt-4">Wedding</h3>
<h2 class="h2 text-uppercase text-center mb-4"><?= $blogspot->wedding_type; ?></h2>
<div class="text-center">
<img src="admin/<?= $blogspot->preview_image_picture(); ?>" class="img-fluid rounded-circle" style="width:270px;height:250px;" alt="">
</div>
<h5 class="h5 text-uppercase text-center mt-3"><?= $blogspot->title; ?></h5>
<div class="font-weight-light text-center mb-3" style="font-size:16px;"><?= $blogspot->location; ?></div>
<p class="text-center"><?= $blogspot->description; ?></p>
</div><!-- end of col-md-8 p-0 pl-3 -->
</div>
</div><!-- end of container -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="js/jquery-3.2.1.slim.min.js"></script>
<script src="js/jquery.min.js"></script>
<script src="js/popper.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap-datepicker.min.js"></script>
<script>
$(document).ready(function () {
$('#wedding_date').datepicker();
});
</script>
</body>
</html>