-
Notifications
You must be signed in to change notification settings - Fork 2
/
a.html
45 lines (41 loc) · 1.71 KB
/
a.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Feedback</title>
<link type="text/css" rel="stylesheet" href="../css/assigment.css"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body style="background-image: url('images/salon1.jpg'); background-repeat: no-repeat;background-size: 100%">
<?php
$title = 'Feedback'; include("header.php");
?>
<center>
<table style = "border-collapse:collapse; background-color: #d9d9d9; bodercolor:black;" border = "5px" width = "70%" class="vtable">
<tr style="background-color: #b3b3b3">
<th>Email</th>
<th>Rate</th>
<th>Comment</th>
<th></th>
</tr>
<tr>
<td>[email protected]</td>
<td>
<img src="images/color_star.png" width="20px">
<img src="images/color_star.png" width="20px">
<img src="images/color_star.png" width="20px">
<img src="images/color_star.png" width="20px">
<img src="images/star.png" width="20px"> </td>
<td>good</td>
<td style="text-align: center;">
<button type="submit" name="feedEdit" class="button2">Edit</button>
<button type="submit" name="feedDel" class="button2">Remove</button>
</td>
</tr>
</table>
</center>
<?php
include "./footer.php";
?>
</body>
</html>