-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (43 loc) · 2.89 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf8">
<title>JoSAA SQL Interface</title>
<meta name="google-site-verification" content="rTHRb2Qt9GWYmRBlBBYHYChhJmlq08L6ASpbgpIvARM" />
<!-- Begin Jekyll SEO tag v2.8.0 -->
<meta property="og:title" content="JoSAA SQL Interface" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="A browser based SQL Interface for JoSAA Opening and Closing Rank data, which allows you to explore and analyze using SQL queries." />
<meta property="og:description" content="A browser based SQL Interface for JoSAA Opening and Closing Rank data, which allows you to explore and analyze using SQL queries." />
<link rel="canonical" href="https://pardhavmaradani.github.io/josaa-sql-interface/" />
<meta property="og:url" content="https://pardhavmaradani.github.io/josaa-sql-interface/" />
<meta property="og:site_name" content="JoSAA SQL Interface" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="JoSAA SQL Interface" />
<!-- End Jekyll SEO tag -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.58.1/codemirror.css">
<link rel="stylesheet" href="css/styles.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.58.1/codemirror.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
</head>
<body>
<div class="container">
<a href="https://github.com/PardhavMaradani/josaa-sql-interface" target="_blank" class="link-primary link-underline-light">[GitHub Code]</a>
<h1 class='mt-2 text-center'>JoSAA Opening / Closing Ranks SQL Interface</h1>
<label class="mt-4" for='commands'>Enter some SQL commands (<b>'Ctrl-Enter'</b> to execute):</label>
<div class="form-floating">
<textarea class="form-control" id="commands"></textarea>
</div>
<div class="mt-2 text-center">
<button id="execute" type="button" class="btn btn-primary">Execute</button>
</div>
<div id="error" class="mt-4 error"></div>
<div id="output" class="table-responsive">Please wait (Downloading DB and setting up)... Results will be displayed here.</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/codemirror/5.58.1/mode/sql/sql.min.js"></script>
<script type="text/javascript" src="js/interact.js"></script>
</body>
</html>