-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
30 lines (23 loc) · 901 Bytes
/
Copy pathindex.php
File metadata and controls
30 lines (23 loc) · 901 Bytes
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
<?php include "templates/header.php"; ?>
<div class=container>
<div>
<ul>
<li><a href="create.php"><strong>Create</strong></a> - add a user</li>
<li><a href="read.php"><strong>Read</strong></a> - find a user</li>
<li><a href="update.php"><strong>Update</strong></a> - edit a user</li>
<li><a href="delete.php"><strong>Delete</strong></a> - delete a user</li>
</ul>
</div>
<div><img src="images/apple.jpg"></div>
<div><img src="images/apple.jpg"></div>
<div><img src="images/apple.jpg"></div>
<div><img src="images/apple.jpg"></div>
<div><img src="images/apple.jpg"></div>
</div>
<!--
<video autoplay muted loop id="myVideo">
<source src="bubbleice.mp4" type="video/mp4">
Your browser does not support HTML5 video.
</video>
-->
<?php include "templates/footer.php"; ?>