-
Notifications
You must be signed in to change notification settings - Fork 9
/
phones.html
79 lines (64 loc) · 2.13 KB
/
phones.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 name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Phones | CovidKashmir</title>
{% include 'favicons.html' %}
<link rel="stylesheet" href="/assets/css/bulma.min.css">
<link rel="stylesheet" href="/assets/css/index.css">
<script src="assets/js/jquery-3.4.1.min.js"></script>
<link rel="stylesheet" href="/assets/css/brands.min.css">
<link rel="stylesheet" href="/assets/css/fontawesome.min.css">
<link rel="stylesheet" href="/assets/css/solid.min.css">
<script src="/assets/js/utils.js"></script>
</head>
<body>
<div id="include-header">
{% include 'header.html' %}
</div>
<div id="include-navbar">
{% include 'navbar.html' %}
</div>
<section class="section">
<div class="container">
<article class="message is-danger">
<div class="message-header">
<p>This Page Has Been Archived.</p>
<button class="delete" aria-label="delete"></button>
</div>
<div class="message-body">
This Page was created to provide Contact Details of Emergency Contacts.
This Page is no longer updated.
</div>
</article>
<article>
<div class="message-header">
<p>Phone No.s</p>
</div>
<div id="data-table">
<progress class="progress is-hidden is-small is-primary" max="100">75%</progress>
<h1 id="nodata-error" class="subtitle is-1 has-text-centered is-hidden">NO DATA FOUND</h1>
<table class="table is-fullwidth" style="overflow-x:auto;">
<thead>
<tr>
<td>Name</td>
<td>Phone No</td>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</article>
</div>
</section>
<div id="include-footer">
{% include 'footer.html' %}
</div>
<script src="assets/js/phones.js"></script>
<script src="assets/js/widgetFunction.js"></script>
<script src="assets/js/localDebug.js"></script>
</body>
</html>