diff options
author | BonfaceKilz | 2020-04-26 03:43:38 +0300 |
---|---|---|
committer | BonfaceKilz | 2020-04-26 07:05:12 +0300 |
commit | 13bcf6fcc911ffa717a86e368b190322b8065d3d (patch) | |
tree | e908b6719510e083259cf9887e8bed55dddc2d77 /bh20simplewebuploader/templates | |
parent | 03cbed808805ccdbff639eaa67e8f8b26c7275b3 (diff) | |
download | bh20-seq-resource-13bcf6fcc911ffa717a86e368b190322b8065d3d.tar.gz bh20-seq-resource-13bcf6fcc911ffa717a86e368b190322b8065d3d.tar.lz bh20-seq-resource-13bcf6fcc911ffa717a86e368b190322b8065d3d.zip |
Add basic structure for interacting with the API
Diffstat (limited to 'bh20simplewebuploader/templates')
-rw-r--r-- | bh20simplewebuploader/templates/form.html | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/bh20simplewebuploader/templates/form.html b/bh20simplewebuploader/templates/form.html index ea3caab..e01b846 100644 --- a/bh20simplewebuploader/templates/form.html +++ b/bh20simplewebuploader/templates/form.html @@ -15,7 +15,27 @@ <small>Disabled until we got everything wired up</small> </section> - <hr> + + <section class="search-section"> + <div class="filter-options" action="#"> + <p>[Demo] Display content sequences by: </p> + + <button class="button">Source</button> + <button class="button">Location</button> + </div> + + <form class="search"> + <input id="search-input" id="global-search" type="search" placeholder="FASTA uri" required> + <button class="button search-button" type="submit" onclick="search()"> + <span class="icon ion-search"> + <span class="sr-only">Search</span> + </span> + </button> + </form> + </section> + + <section class="results"> + </section> <section> <form action="/submit" method="POST" enctype="multipart/form-data" id="main_form" class="grid-container"> |