-
Notifications
You must be signed in to change notification settings - Fork 0
/
select.php
60 lines (41 loc) · 1.35 KB
/
select.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
55
56
<?php
include 'configure.php';
?>
<!doctype html>
<html lang="eng">
<head>
<title>select</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" >
<style>
.container1{
margin-bottom: 50%;
}
</style>
</head>
<body>
<div class="container">
<h3 class="text-center bg-warning ">Choose The Panel</h3><br>
<div class="row">
<div class="col-sm-6">
<div class="card" style="width: 18rem;">
<img src="admin.jpg" class="card-img-top" alt="admin image">
<div class="card-body">
<h5 class="card-title">ADMIN</h5>
<a href="Details.php" class="btn btn-primary">Click me</a>
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card" style="width: 18rem;">
<img src="ur.jpeg" class="card-img-top" alt="admin image">
<div class="card-body">
<h5 class="card-title">USER</h5>
<a href="client.php" class="btn btn-primary">Click me</a>
</div>
</div>
</div>
</div>
</div>
</body>
</html>