-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch-go.php
67 lines (62 loc) · 2.41 KB
/
search-go.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search | Gene Ontology</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="http://getbootstrap.com.vn/examples/equal-height-columns/equal-height-columns.css" />
<link rel="stylesheet" type="text/css" href="resources/css/custom-home.css">
<link rel="stylesheet" type="text/css" href="">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.data{
padding: 15px;
border-radius: 10px;
}
</style>
</head>
<body>
<?php include("navbar.inc.php") ?>
<!-- page body container-->
<div class="container">
<div class="row">
<div class="col-sm-3"></div>
<div class="col-sm-6">
<center><h2>Perform your Gene Ontology search here</h2></center>
<hr>
<form action="search-go-intermediate.php" method="POST">
<input type="hidden" name="pageid" value="1">
<div class="form-group">
<label for="go">Unigene ID</label>
<input type="text" name="unigeneid" class="form-control" id="unigeneid" required="required" placeholder="Enter UnigeneId e.g. Unigene61">
<div class="form-group">
<div class="col-sm-offset-5 col-sm-10">
<button type="submit" class="btn btn-default">Submit</button>
</div>
<label for="go">Gene ontology</label>
<select name="go" class="form-control" id="go" required="required">
<option value="">-choose-</option>
<option value='C GO'>Cellular component</option>
<option value='F GO'>Molecular Function</option>
<option value='P GO'>Biological Process</option>
</select>
<div class="form-group">
<div class="col-sm-offset-5 col-sm-10">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
<hr>
<br>
<p align="center"><small>Fill at-least one field to perform a valid search</small></p>
</div>
</form>
<hr><hr>
</div>
<div class="col-sm-3"></div>
</div><!-- row end-->
</div><!-- container end-->
<hr>
</body>
</html>