-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
114 lines (104 loc) · 4.09 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<html>
<head>
<title>Adoption Search</title>
<script src="adoptSearch.js"></script>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<script src="https://kit.fontawesome.com/775768a85b.js"></script>
<link rel="icon" type="image/png" href="imgs/meteor.png">
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand" href="#">Home</a>
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" href="#">Adoption Search<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="backorderSearch.html">Backorder Search</a>
</li>
<li class="nav-item">
<a class="nav-link" href="ISBNConverter.html">ISBN Converter</a>
</li>
<li class="nav-item">
<a class="nav-link" href="cageListRender.html">Display Cage List</a>
</li>
</ul>
</nav>
<div style="padding-left:20px; padding-top:10px; padding-left:20px">
<h1>Adoption Search</h1>
<div class="submitFiles">
<form>
<h4>Select the Netsuite File</h4><br>
<input type="file" id="csvFileInput" onchange="handleFiles(this.files, 0)" accept=".csv" required>
<h4>Select the Cagelist File</h4><br>
<input type="file" id="cageListInput" onchange="handleFiles(this.files, 1)" accept=".csv" required>
<button type="button" class="btn btn-primary" id="submitButton" onclick="compareLists()">Submit</button>
</form>
</div>
<div class="border">
<p id="results">Results Appear Here</p>
</div>
<div class="howTo">
<h5>how to do this thing</h5>
<button id="showMe" class="btn btn-info" onclick="showStuff()">show me</button>
<div id="instructions" style="display:none">
<ol>
<h4>
<li>Download the CSV file from Netsuite</li>
</h4>
<img src="imgs/adoptStep1.jpg">
<h5>make sure you select the right semester</h5>
<img src="imgs/adoptStep2.jpg">
<h5>click there to download</h5>
<img src="imgs/adoptStep3.jpg">
<h4>
<li>Download the CSV file from Google Sheets</li>
</h4>
<img src="imgs/adoptStep4.jpg">
<img src="imgs/adoptStep5.jpg">
<h4>
<li>Upload 'em Here</li>
</h4>
<p>don't upload the netsuite file on the cage list upload section or it wont work</p>
</ol>
</div>
</div>
</div>
<!-- COMPONENT START
<h3>Potential File Select STyle</h3>
<form method="POST" action="#" enctype="multipart/form-data">
<div class="form-group">
<div class="input-group input-file" name="Fichier1">
<input type="text" class="form-control" placeholder='Choose a file...' />
<span class="input-group-btn">
<button class="btn btn-default btn-choose" type="button">Choose</button>
</span>
</div>
</div>
<div class="form-group">
<button type="submit" class="btn btn-primary pull-right" disabled>Submit</button>
<button type="reset" class="btn btn-danger">Reset</button>
</div>
</form>
<!-- COMPONENT END -->
</body>
<style>
@media print {
.submitFiles {
display: none;
}
.howTo {
display: none;
}
.printIcon {
display: none;
}
.navbar {
display: none;
}
}
.printIcon:hover {
opacity: .75;
}
</style>
</html>