-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (73 loc) · 2.85 KB
/
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
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>First Web Site</title>
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" type="text/css" href="css/agenda.css">
</head>
<body>
<div id="layout" class="x-borders">
<header>
<div>
<!-- <a id="logo" href="." title="FastTrackIT">
<img src="img/logo.png" alt="FastTrackIT" title="FastTrackIT">
</a> -->
<h1>Your own phone book app</h1>
<h5>Made for PBL submission at JIIT Noida 2023</h5>
</div>
</header>
<div id="top-menu">
<div>
<button id="secondary-toggle" class="genericon genericon-menu">Widgets</button>
<ul>
<li><a href="index.html" title="welcome home">HOME</a></li>
</ul>
</div>
</div>
<div id="content-wrapper">
<div id="content">
<div id="breadcrumb">Phone Book</div>
<form class="add-form" action="" onsubmit="return false" method="post">
<div style="padding-bottom: 5px">
<input type="text" id="search" placeholder="Search">
<label for="search">🔎</label>
</div>
<table id="phone-book">
<thead>
<tr>
<th>First name</th>
<th>Last name</th>
<th>Phone</th>
<th width="100">Actions</th>
</tr>
</thead>
<tbody>
</tbody>
<tfoot>
<tr>
<td><input type="text" required name="firstName" placeholder="Enter first name"></td>
<td><input type="text" name="lastName" placeholder="Enter last name"></td>
<td><input type="text" required name="phone" placeholder="Enter phone"></td>
<td>
<button type="submit" title="Save">💾</button>
<button type="reset" onclick="PhoneBook.cancelEdit()" title="Cancel">✖</button>
</td>
</tr>
</tfoot>
</table>
</form>
</div>
<div class="clear"></div>
</div>
<footer>
<p>© 2023 JIIT, All rights reserved.</p>
</footer>
</div>
<script src="js/lib/jquery/jquery-2.1.3.js"></script>
<script src="js/code-examples/functions-jquery.js" type="text/javascript"></script>
<script src="js/phone-book.js"></script>
</body>
</html>