forked from janmeshpatel/Motofit_Admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBreakdown_Service.html
107 lines (98 loc) · 5.12 KB
/
Breakdown_Service.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
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
105
106
107
<!DOCTYPE html>
<html lang="">
<head>
<meta content="width=device-width" name="viewport">
<meta charset="utf-8">
<title>MotoFit</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://code.getmdl.io/1.3.0/material.brown-red.min.css" rel="stylesheet">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.10.0/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.10.0/firebase-database.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.14.0/firebase-auth.js"></script>
<script src="https://www.gstatic.com/firebasejs/7.10.0/firebase-analytics.js"></script>
<!-- Bootstrap core CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.4.1/css/bootstrap.min.css" rel="stylesheet">
<!-- Material Design Bootstrap -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdbootstrap/4.14.1/css/mdb.min.css" rel="stylesheet">
</head>
<body>
<script src="FirebaseConnect.js"></script>
<script src="login.js"></script>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
<script src="Breakdown_Service.js"></script>
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--fixed-tabs" id="login-div">
<main class="mdl-layout__content" style="background: #f7f7f7">
<center><img height="300px" src="motofit_img.jpg" style="margin: 20px;" width="300px"></center>
<center>
<!-- Username -->
<input class="form-control" id="username" placeholder="Email" style="width: 300px; height: 50px"
type="email"><br>
<input class="form-control" id="password" placeholder="Password" style="width: 300px; height: 50px"
type="password"><br>
<button class="btn btn-brown" onclick="login()" style="height: 50px; width: 200px" type="button">Login
</button>
</center>
</main>
</div>
<div
class="mdl-layout mdl-js-layout mdl-layout--fixed-header
mdl-layout--fixed-tabs" id="breakdown_div">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">Motofit Admin Panel</span>
</div>
</header>
<div class="mdl-layout__drawer" style="background: #f7f7f7">
<span class="mdl-layout-title"><a href="index.html"><img height="150px" src="motofit_img.jpg" width="150px"></a></span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="Customer_Information.html">Customer Information</a>
<a class="mdl-navigation__link" href="Service_Booking.html">Service Booked</a>
<a class="mdl-navigation__link" href="Breakdown_Service.html">Breakdown Service</a>
<a class="mdl-navigation__link" href="bill_layout.html">Billing Tab</a>
<a class="mdl-navigation__link" href="Delivering_Service.html">Delivering Two Wheeler</a>
<button class="btn btn-brown" onclick="signOut()" style="height: 50px; width: 200px; margin: 20px"
type="button">Sign Out
</button>
</nav>
</div>
<main class="mdl-layout__content" style="background: #f7f7f7">
<!--BreakDown Service Tab-->
<div class="page-content">
<div class="card text-center">
<div class="card-header">
<h2>Breakdown Service</h2>
</div>
<div class="card-body">
<center>
<h1><p id="notfound"></p></h1>
<div class="table-responsive, table-scroll-vertical">
<table border="1px" class="mdl-data-table mdl-js-data-table, card-text, table, "
style=" background: #f7f7f7 ">
<thead>
<tr>
<th>#</th>
<th class="mdl-data-table__cell--non-numeric">Name</th>
<th class="mdl-data-table__cell--non-numeric">Date and Time</th>
<th class="mdl-data-table__cell--non-numeric">Bike Brand</th>
<th class="mdl-data-table__cell--non-numeric">Bike Model</th>
<th class="mdl-data-table__cell--non-numeric">Doorstep Service Type</th>
<th class="mdl-data-table__cell--non-numeric">Location</th>
</tr>
</thead>
<tbody id=breakdown_service_table_body>
</tbody>
</table>
</div>
</center>
</div>
<div class="card-footer text-muted">
</div>
</div>
</div>
</main>
</div>
</body>
</html>