-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtable_index.html
79 lines (76 loc) · 4.19 KB
/
table_index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style/style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://pro.fontawesome.com/releases/v5.10.0/css/all.css" integrity="sha384-AYmEC3Yw5cVb3ZcuHtOA93w35dYTsvhLPVnYs9eStHfGJvOvKxVfELGroGkvsg+p" crossorigin="anonymous"/>
<script src="./js/sidebar.js"></script>
<title>Document</title>
</head>
<body>
<div class="sidebar" id="sidebar">
<a href="javascript:void(0)" class="desktop-view" style="text-decoration: none;" onclick="closeNav()"><i class="fas fa-times cross-side"></i></a>
<div href="#" class="brand">
<img class="brand-image" src="./images/nature-logo.png" width="50" height="50">
<h2 class="brand-name">Hari</h2>
</div>
<hr>
<div class="sidebar-links">
<ul>
<li><i class="fas fa-home" style="color:white;"></i> <a href="index.html" class="active">Home</a></li>
<li><i class="fas fa-hotel" style="color:white;"></i> <a href="add_hotel.html" class="">Hotel</a></li>
<li><i class="fas fa-bed"style="color:white;"></i> <a href="">Rooms</a></li>
<li><i class="fas fa-glass-martini" style="color:white;"></i> <a href="">Resturants</a></li>
<li><i class="fas fa-utensils" style="color:white;"></i> <a href="">Menu</a></li>
<li><i class="fas fa-couch" style="color:white;"></i> <a href="" class="">Table</a></li>
<li><i class="fas fa-warehouse" style="color:white;"></i> <a href="" class="">Hall</a></li>
<li><i class="fas fa-users" style="color:white;"></i> <a href="" class="">Customers</a></li>
<li><i class="fas fa-book" style="color:white;"></i> <a href="">Booking</a></li>
<li><i class="fas fa-comment" style="color:white;"></i> <a href="">Reviews</a></li>
<li><i class="fas fa-user" style="color:white;"></i> <a href="">Account</a></li>
</ul>
</div>
</div><!-- Sidebar -->
<div class="main-content" id="main">
<div class="topnav">
<div class="topnav-header">
<div class="dashboard-name">
<i class="fas fa-bars desktop icon-color" style="color:red" onclick="openNav()"></i>
<i class="fas fa-bars mobile" style="color:red" onclick="openNavMobile()"></i>
<h3 style="margin-left: 10px;">Dashboard</h3>
</div>
<div class="user">
<h4>Manish Regmi</h4>
<img src="./images/nature-logo.png" class="user-image" alt="User Image">
</div>
</div>
</div><!-- topnav -->
<div class="content-section">
<h3 style="color: red; text-align: center;" class="text-center">Choose One For Table</h3>
<section class="middle-section">
<div class="card">
<div class="card-icon"><i class="fas fa-plus fa-2x"></i></div>
<hr>
<div class="card-body">
<h4><b>Add</b></h4>
<h5>Add Table</h5>
</div>
</div>
<div class="card">
<div class="card-icon"><i class="fas fa-book fa-2x"></i></div>
<hr>
<div class="card-body">
<h4><b>Lists</b></h4>
<h5>Table Lists</h5>
</div>
</div>
</section><!-- Middle section -->
</div><!-- Content-section -->
</div><!-- Main-content -->
</body>
</html>