-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathadmin.html
More file actions
110 lines (110 loc) · 3.49 KB
/
admin.html
File metadata and controls
110 lines (110 loc) · 3.49 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0-alpha1/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet" crossorigin="anonymous">
<link href="css/style.css" rel="stylesheet" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="js/main.js" crossorigin="anonymous"></script>
<script src="vendor/star-rating/star-rating.min.js" crossorigin="anonymous"></script>
<link href="vendor/star-rating/star-rating.min.css" rel="stylesheet" crossorigin="anonymous">
</head>
<body>
<!-- begin container -->
<div class="container">
<div class="row">
<header class="site-header">
<h1>Best website ever</h1>
<a href>Logout</a>
</header>
</div>
<div class="row">
<section class="content container">
<h2 class="text-center">Reviews</h2>
<br>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>ID</th>
<th>Date</th>
<th>Rating</th>
<th>Review Text</th>
<th>Name</th>
<th>Position</th>
<th>E-Mail</th>
<th>Website</th>
<th>Bio</th>
<th></th>
</tr>
</thead>
<tbody>
<tr>
<th>#001</th>
<th>16/11/2015</th>
<th>5</th>
<th>Great website! Loving it!</th>
<th>John</th>
<th>Chief</th>
<th>lobsetson@gmail.com</th>
<th></th>
<th>Lorem ipsum dolor.</th>
<th><a href><span class="glyphicon glyphicon-trash"></span></a></th>
</tr>
<tr>
<th>#002</th>
<th>16/11/2015</th>
<th>5</th>
<th>Lorem ipsum dolor sit amet.</th>
<th>John</th>
<th>Chief</th>
<th>lobsetson@gmail.com</th>
<th>www.ex.ua</th>
<th></th>
<th><a href><span class="glyphicon glyphicon-trash"></span></a></th>
</tr>
<tr>
<th>#003</th>
<th>17/11/2015</th>
<th>5</th>
<th>Lorem ipsum dolor sit amet, consectetur.</th>
<th>John</th>
<th>Chief</th>
<th></th>
<th>www.ex.ua</th>
<th>Lorem ipsum dolor.</th>
<th><a href><span class="glyphicon glyphicon-trash"></span></a></th>
</tr>
<tr>
<th>#004</th>
<th>17/11/2015</th>
<th>5</th>
<th></th>
<th>John</th>
<th>Chief</th>
<th></th>
<th>www.ex.ua</th>
<th>Lorem ipsum dolor.</th>
<th><a href><span class="glyphicon glyphicon-trash"></span></a></th>
</tr>
<tr>
<th>#006</th>
<th>17/11/2015</th>
<th>5</th>
<th>Lorem ipsum dolor sit amet, consectetur.</th>
<th>John</th>
<th>Chief</th>
<th>letsgho@gmail.com</th>
<th>www.ex.ua</th>
<th>Lorem ipsum dolor.</th>
<th><a href><span class="glyphicon glyphicon-trash"></span></a></th>
</tr>
</tbody>
</table>
</section>
</div>
</div>
<!-- end container -->
</body>
</html>