-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
39 lines (39 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.2/jquery-ui.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/js/bootstrap.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css" rel="stylesheet" />
<title>UCSC Beacon</title>
</head>
<body>
<div class="container-fluid">
<h2>UCSC Beacon</h2>
<div class="row">
<div class="col-sm-4">
<span class="help-block">Query this beacon.</span>
<form action="/cgi-bin/ucscBeacon/query" method="get">
<div class="form-group input-container">
<label for="chromosome">Chromosome:</label>
<input name="chromosome" id="chromosome" type="text" class="form-control" value="1"/>
</div>
<div class="form-group input-container">
<label for="position">Position:</label>
<input name="position" id="position" type="text" class="form-control" value="1"/>
</div>
<div class="form-group input-container">
<label for="alternativeBases">Allele:</label>
<input name="alternateBases" id="alternativeBases" type="text" class="form-control" value="T"/>
</div>
<button type="submit" class="btn btn-default" onclick="query()">Submit</button>
<input name="format" type="hidden" class="form-control" value="text"/>
</form>
</div>
<div class="col-sm-8">
<div id="text1" class="text-output"></div>
</div>
</div>
</div>
</body>
</html>