-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (83 loc) · 3.8 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
<!DOCTYPE html>
<!-- reference: https://levelup.gitconnected.com/building-a-simple-website-that-outputs-results-from-a-csv-using-users-input-bfcb782ced45 -->
<html lang="en">
<head>
<!-- <meta name="viewport" content="width=device-width, initial-scale=1"> -->
<!-- <meta name="viewport" content="width=device-width,initial-scale=1.0"> -->
<meta name="viewport" content="width=1000 user-scalable=0" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=yes" /> -->
<meta name="description" content="" />
<meta name="author" content="" />
<title>WiNS Member List</title>
<!-- TODO: replace bookmark icon -->
<!-- <link rel="icon" type="image/x-icon" href="assets/img/film.svg" /> -->
<!-- Font Awesome icons (free version)-->
<script src="https://use.fontawesome.com/releases/v5.15.1/js/all.js" crossorigin="anonymous"></script>
<!-- Google fonts-->
<link href="https://fonts.googleapis.com/css?family=Varela+Round" rel="stylesheet" />
<script src="https://d3js.org/d3.v5.min.js"></script>
<link
href="https://fonts.googleapis.com/css?family=Century Gothic:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i"
rel="stylesheet" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
</head>
<body>
<!-- background video playing on loop -->
<!-- <video autoplay muted loop id="myVideo">
<source src="assets/img/bg.mp4" type="video/mp4">
</video> -->
<header class="mas">
<div class="container h-100"> <!-- align-items-center">-->
<div class="row">
<div class="col-md-12">
<div class="mx-auto">
<br>
<br>
<br>
<p align="left">To search the database of WiNS members, please enter research keywords, affiliation, or name.
</p>
<form id="form">
<div class="input-group input-group-newsletter">
<input class="form-control" id="user-input" placeholder="Enter search terms here..."
aria-label="Enter search terms..." aria-describedby="submit-button">
<div class="boton input-group-append" id="boton">
<button class="boton btn btn-secondary" type="button" id="button">Search Members</button>
</div>
</div>
</form>
<p class="noresults">
</p>
<p class="noresults2">It might take a few seconds to load the database for your first search (depending on your internet connection)
</p>
<table class="table" cellpadding="10" align="left">
<thead>
<tr>
<!-- column names for database to filter on -->
<th scope="col">Results</th>
<!--<th scope="col">Pronouns</th>
<th scope="col">Affiliation</th>
<th scope="col">Year(s) Since Joined</th>
<th scope="col">Website(s)</th>
<th scope="col">Research Keywords</th> -->
</tr>
</thead>
<tbody>
</div>
</div>
</div>
</div>
</div>
</header>
<script src="utils.js"></script>
<script src="app.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/underscore-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
<!-- Third party plugin JS-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-easing/1.4.1/jquery.easing.min.js"></script>
<!-- Core theme JS-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>