-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
89 lines (66 loc) · 2.61 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<?php
// Start the session
session_start();
?>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inventory Management System</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="assets/dist/css/bootstrap.min.css" >
<link rel="stylesheet" href="style.css">
</head>
<body>
<?php
$servername = "localhost";
$username = "root";
$password = "";
// Create connection
$conn = new mysqli($servername, $username, $password);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
// Create database
$sql = "CREATE DATABASE IF NOT EXISTS inventory_db";
if ($conn->query($sql) === TRUE) {
//echo "Database created successfully";
$conn->close();
}
?>
<div class="d-flex flex-column flex-md-row align-items-center p-3 px-md-4 mb-3 bg-white border-bottom shadow-sm">
<a class="navbar-brand my-0 mr-md-auto" href="dashboard.php">
<img src="images/logo.svg" alt="logo" width="130" height="30" alt="Logo" loading="lazy">
</a>
<button class="btn btn-outline logout-btn" onclick="location.href='user-login.php'">Login</button>
</div>
<div class="container h-100">
<div class="row text-center align-items-center h-100 " >
<div class="col-12 mx-auto">
<div class="mt-4">
<div class="text-center p-2">
<h1 class="theme-color">Inventory Management System</h1>
<h5></h5>
</div>
</div>
</div>
<div class="col-12 mx-auto">
<div class="mt-4">
<div class="text-center p-2">
<h3 class="theme-color">Team Members</h3>
</div>
</div>
</div>
<!-- Team member-1 HERE -->
<div class="col-lg-12 center team-menbers">
<img src="images/runal.png" class="rounded-circle" width="120" height="120">
<h6 class="m-1">Runal Banarse</h6>
<a href="https://runalb.com" class="theme-color">runalb.com</a>
</div>
</div>
</div>
</body>
</html>