-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbooking.php
More file actions
47 lines (37 loc) · 1.28 KB
/
booking.php
File metadata and controls
47 lines (37 loc) · 1.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<?php include_once "dashboard.php"; ?>
<div class="center">
<div class="profile">
<table>
<tr>
<td>
<div class="title-header">CREATE BOOKINGS</div>
</td>
</tr>
</table>
<div id="target">
</div>
<script>
// Get reference to the target div
const targetDiv = document.getElementById('target');
// Create an iframe element
const iframe = document.createElement('iframe');
// Set attributes for the iframe
iframe.src = 'https://schedule.nylas.com/justbfitness-booking';
iframe.width = '10000px'; // Set width as needed
iframe.height = '1000px'; // Set height as needed
iframe.frameBorder = '0'; // Optional: remove border
// Append the iframe to the target div
targetDiv.appendChild(iframe);
</script>
</div>
</div>
<?php include_once "footer.php"; ?>
</body>
</html>