-
Notifications
You must be signed in to change notification settings - Fork 0
/
single.html
54 lines (44 loc) · 1.61 KB
/
single.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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-117773670-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-117773670-1');
</script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Single Lookup</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"/>
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<link rel="stylesheet" type="text/css" href="css/single.css"/>
<script src="js/main.js"></script>
<style type="text/css">
</style>
</head>
<body>
<div class="topnav" id="topnavbar">
<a href="index.html">Home</a>
<a href="single.html" class="active">Single</a>
<a href="batch.html">Batch</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
<a class="icon" href="javascript:void(0);" onclick="navigationBar()">☰</a>
</div>
<div class="main-body">
<h1><b>Single Lookup</b></h1>
<h3>Please enter an email address to look up.</h3>
<form action="cgi-bin/single_lookup.py" enctype="multipart/form-data" method="post" target="results">
<input name="email" type="text" />
<input type="submit" value="Search" />
</form>
</div>
<iframe name="results" frameborder="0"></iframe>
<div class="footer">
<!--footer text here-->
</div>
</body>
</html>