-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathadmin-page.php
54 lines (46 loc) · 1.95 KB
/
admin-page.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="java-script/jquery-1.8.2.min.js"></script>
<script src="java-script/bootstrap.js" type="text/javascript"></script>
<link rel="stylesheet" href="style/bootstrap.css">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<style>
body {
overflow-x: hidden;
background-image: url(pics/body1.jpg);
background-size: cover;
}</style>
</head>
<body>
<br><br><br><br>
<center>
<div class="container">
<div class="row">
<div class="col-md-3 offset-md-2">
<!--card 1 profile-->
<div class="card" style="width: 18rem; padding:3px;">
<img src="pics/clientimage.jpg" class="card-img-top" alt="..." height="200" width="200">
<div class="card-body">
<h5 class="card-title">Client's Data</h5>
<a href="admin-client.php" class="btn btn-primary">Show all data</a>
</div>
</div>
</div>
<div class="col-md-3 offset-md-1">
<!--card 1 profile-->
<div class="card" style="width: 18rem; padding:3px;">
<img src="pics/contributorimage.png" class="card-img-top" alt="..." height="200" width="400">
<div class="card-body">
<h5 class="card-title">Contributor's Data</h5>
<a href="admin-contributor.php" class="btn btn-primary">Show all data</a>
</div>
</div>
</div>
</div>
</div>
</center>
</body>
</html>