-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsearch-unigene.php
52 lines (49 loc) · 1.74 KB
/
search-unigene.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Search Unigene| Sequence </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>Unigene sequence </h2></center>
<hr>
<form action="search-unigene-result.php" method="POST">
<!--<input type="hidden" name="pageid" value="1" >-->
<div class="form-group">
<label for="unigeneid">Sequence search </label>
<input type="text" name="unigeneid" class="form-control" id="unigeneid" required="required" placeholder="Enter UnigeneId e.g. Unigene61">
</div>
<hr>
<div class="form-group">
<div class="col-sm-offset-5 col-sm-10">
<button type="submit" class="btn btn-default">Submit</button>
</div>
</div>
</form>
<hr><hr>
</div>
<div class="col-sm-3"></div>
</div><!-- row end-->
</div><!-- container end-->
<hr>
</body>
</html>