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/continue_from_create_study.html | |
parent | 05402410638fc7dd678a6289ccd2a9ce11acc5e7 (diff) | |
download | gn-uploader-f726c71bf1636a838f45363d1613763a2926e34f.tar.gz |
Update html templates to use bootstrap for styling
Diffstat (limited to 'qc_app/templates/continue_from_create_study.html')
-rw-r--r-- | qc_app/templates/continue_from_create_study.html | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/qc_app/templates/continue_from_create_study.html b/qc_app/templates/continue_from_create_study.html index 7455fbc..34e6e5e 100644 --- a/qc_app/templates/continue_from_create_study.html +++ b/qc_app/templates/continue_from_create_study.html @@ -20,7 +20,7 @@ {%endif%} {%endwith%} -<div class="two-column-with-separator"> +<div class="row"> <form method="POST" action="{{url_for('dbinsert.select_dataset')}}" id="select-platform-form" data-genechips="{{genechips_data}}" class="two-col-sep-col1"> @@ -29,15 +29,15 @@ filename, filetype, species=species, genechipid=genechipid, studyid=studyid, totallines=totallines)}} - <fieldset> - <input type="submit" - value="continue" - class="btn btn-primary form-col-2" /> - </fieldset> + <button type="submit" class="btn btn-primary">continue</button> </form> +</div> +<div class="row"> <p class="two-col-sep-separator">OR</p> +</div> +<div class="row"> <form method="POST" action="{{url_for('dbinsert.select_study')}}" id="select-platform-form" data-genechips="{{genechips_data}}" class="two-col-sep-col2"> @@ -46,11 +46,7 @@ filename, filetype, species=species, genechipid=genechipid, studyid=studyid, totallines=totallines)}} - <fieldset> - <input type="submit" - value="go back" - class="btn btn-primary form-col-2" /> - </fieldset> + <button type="submit" class="btn btn-primary">go back</button> </form> </div> {%endblock%} |