-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstockhome.php
60 lines (48 loc) · 2.09 KB
/
stockhome.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
57
58
59
60
<?php
ob_start();
session_start();
include 'connection.php';
include 'doctorheader.php';
include 'css/style.css';
include('checklogin.php');
check_login();
?>
<html>
<title>Stockiest|Home</title>
<head> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.0/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-gH2yIJqKdNHPEq0n4Mqa/HGKIhSkIHeL5AyhkYV8i59U5AR6csBvApHHNl/vI1Bx" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<font color="#0000FF"><b><h4><span> Welcome : <?php
$name=$_SESSION['login'];
echo $name;
?>
</span></h4></b></font>
<div class="div-center" style="margin-top:50px;">
<div class="container">
<div class="row my-6">
<div class="col-md-6">
<div class="card text-center h-350" WIDTH="250PX" style=" border:2px solid #0d6efd;">
<a href="addproductS.php" STYLE="text-decoration:none;"><div class="card-block ">
<h2><i class="fa fa-cart-plus fa-3x"></i></h2>
<br><br>
<h6 class="card-title"><b>ADD PRODUCTS</b></h6>
</div></a>
</div>
</div>
<div class="col-md-6">
<div class="card text-center h-100" style=" border:2px solid #0d6efd;">
<a href="myproductS.php" STYLE="text-decoration:none;"><div class="card-block" WIDTH="200PX" HIEGHT="200PX">
<h2><i class="fa fa-shopping-basket fa-3x"></i></h2>
<BR><BR>
<h6 class="card-title"><b>PRODUCTS</h6></B>
</div></a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>