-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.php
28 lines (23 loc) · 853 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Add your head content here -->
<title>Shoppify</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="header-container">
<?php include 'templates/header.php'; ?>
</div>
<div class="page-content">
<!-- Rest of the page content goes here -->
<h1>Welcome to Shoppify</h1>
<p>Register or Login to Enjoy your shopping.</p>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/js/bootstrap.min.js"></script>
</body>
</html>