-
Notifications
You must be signed in to change notification settings - Fork 2
/
page1.html
49 lines (45 loc) · 1.41 KB
/
page1.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Ideal Engine</title>
<meta name="viewport" content="initial-scale=1.0; maximum-scale=1.0; width=device-width;">
<link rel = "stylesheet"
href = "./bower_components/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="mycss.css">
</head>
<body>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<input type="file" name="fileUpload" id="fileUpload"/>
<br>
<button class = "btn btn-primary" id = "add-to-list-from-csv">Upload CSV</button>
<br>
<button class = "btn btn-primary" id = "take-from-list-all">See All</button>
<br>
<button class = "btn btn-primary" id = "del-from-list">Clear</button>
</div>
<span style="font-size:30px;color:white;cursor:pointer" onclick="openNav()">☰</span>
<script>
function openNav() {
document.getElementById("mySidenav").style.width = "250px";
}
function closeNav() {
document.getElementById("mySidenav").style.width = "0";
}
</script>
<h1>Welcome to Ideal Engine!</h1>
<table class="table-fill" id="contact-table">
<thead>
<tr>
<th class="text-left">Sl. no.</th>
<th class="text-left">Group Number</th>
<th class="text-left">Remarks</th>
</tr>
</thead>
<tbody class="table-hover">
</tbody>
</table>
<script src = "./view.js" ></script>
</body>
</html>