diff options
author | Frederick Muriuki Muriithi | 2024-06-12 16:38:54 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-06-13 12:01:14 -0500 |
commit | f726c71bf1636a838f45363d1613763a2926e34f (patch) | |
tree | 8b5e0323106026abafa5cc0385a32df9df62f9e5 /qc_app/templates/rqtl2/upload-rqtl2-bundle-step-01.html | |
parent | 05402410638fc7dd678a6289ccd2a9ce11acc5e7 (diff) | |
download | gn-uploader-f726c71bf1636a838f45363d1613763a2926e34f.tar.gz |
Update html templates to use bootstrap for styling
Diffstat (limited to 'qc_app/templates/rqtl2/upload-rqtl2-bundle-step-01.html')
-rw-r--r-- | qc_app/templates/rqtl2/upload-rqtl2-bundle-step-01.html | 20 |
1 files changed, 9 insertions, 11 deletions
diff --git a/qc_app/templates/rqtl2/upload-rqtl2-bundle-step-01.html b/qc_app/templates/rqtl2/upload-rqtl2-bundle-step-01.html index cc7c92e..5cf9dfd 100644 --- a/qc_app/templates/rqtl2/upload-rqtl2-bundle-step-01.html +++ b/qc_app/templates/rqtl2/upload-rqtl2-bundle-step-01.html @@ -21,13 +21,14 @@ {{flash_all_messages()}} - <fieldset> - <legend>file upload</legend> - <label for="file-rqtl2-bundle">R/qtl2 bundle</label> + <div form-group> + <legend class="heading">file upload</legend> + <label for="file-rqtl2-bundle" class="form-label">R/qtl2 bundle</label> <input type="file" id="file-rqtl2-bundle" name="rqtl2_bundle_file" accept="application/zip, .zip" - required="required" /> - <span class="form-input-help"><p>Provide a valid R/qtl2 zip file here. In + required="required" + class="form-control" /> + <span class="form-text text-muted"><p>Provide a valid R/qtl2 zip file here. In particular, ensure your zip bundle contains exactly one control file and the corresponding files mentioned in the control file.</p> <p>The control file can be either a YAML or JSON file. <em>ALL</em> other @@ -36,12 +37,9 @@ <a href="https://kbroman.org/qtl2/assets/vignettes/input_files.html" target="_blank"> R/qtl2 file format specifications</a> for more details.</p></span> - </fieldset> - <fieldset> - <input type="submit" - value="upload R/qtl2 bundle" - class="btn btn-primary form-col-2" /> - </fieldset> + </div> + + <button type="submit" class="btn btn-primary">upload R/qtl2 bundle</button> </form> {%endblock%} |