-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustomer.php
104 lines (94 loc) · 4.39 KB
/
customer.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en" dir="Itr">
<head>
<meta charset="utf-8">
<title>Rainbow Paints</title>
<link rel="stylesheet" href="css/home-style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.min.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg bg-dark py-3">
<div class="container"><a href="index.php" class="navbar-brand text-uppercase font-weight-bold">Paint House</a>
<button type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation" class="navbar-toggler navbar-toggler-right"><i class="fa fa-bars"></i></button>
<div id="navbarSupportedContent" class="collapse navbar-collapse">
<ul class="navbar-nav ml-auto">
<li class="nav-item active"><a href="index.php" class="nav-link text-uppercase font-weight-bold">Home <span class="sr-only">(current)</span></a></li>
<li class="nav-item"><a href="admin.php" class="nav-link text-uppercase font-weight-bold">Admin</a></li>
<li class="nav-item"><a href="customer.php" class="nav-link text-uppercase font-weight-bold">Customer Shop</a></li>
<li class="nav-item"><a href="vendorCompany.php" class="nav-link text-uppercase font-weight-bold">Vendor Company</a></li>
<li class="nav-item"><a href="employees.php" class="nav-link text-uppercase font-weight-bold">Employee</a></li>
<li class="nav-item"><a href="index.php#footer" class="nav-link text-uppercase font-weight-bold">About Us</a></li>
</ul>
</div>
</div>
</nav>
</header>
<div class="bodyText">
<h1 class="text1">Hello, Customer</h1>
<h2 class="text1">Welcome to Rainbow Paints</h2>
<h4 class="text1">Please Login or Singin to access features.</h4>
<ul>
<li>
<a href="customerShop/login.php">Login</a>
</li>
<li>
<a href="customerShop/signup.php">Apply</a>
</li>
</ul>
</div>
<footer class="bg-dark text-center text-white ">
<!-- Section: Social media -->
<section class="mb-4 social adminFooter">
<!-- Facebook -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #3b5998;"
href="#!"
role="button"
><i class="fab fa-facebook-f"></i
></a>
<!-- Twitter -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #55acee;"
href="#!"
role="button"
><i class="fab fa-twitter"></i
></a>
<!-- Google -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #dd4b39;"
href="#!"
role="button"
><i class="fab fa-google"></i
></a>
<!-- Instagram -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #ac2bac;"
href="#!"
role="button"
><i class="fab fa-instagram"></i
></a>
<!-- Linkedin -->
<a
class="btn btn-primary btn-floating m-1"
style="background-color: #0082ca;"
href="#!"
role="button"
><i class="fab fa-linkedin-in"></i
></a>
</section>
<!-- Section: Social media -->
<!-- Copyright -->
<div class="text-center p-3" style="background-color: rgba(0, 0, 0, 0.2);">
© 2020 All Copyright reserved. Rainbow Paints - Developed By - Thimira Madusanka
</div>
<!-- Copyright -->
</footer>
</body>
</html>