aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'uploader/templates/index.html')
-rw-r--r--uploader/templates/index.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/uploader/templates/index.html b/uploader/templates/index.html
new file mode 100644
index 0000000..e3f5af4
--- /dev/null
+++ b/uploader/templates/index.html
@@ -0,0 +1,27 @@
+{%extends "base.html"%}
+{%from "flash_messages.html" import flash_all_messages%}
+
+{%block title%}Home{%endblock%}
+
+{%block pagetitle%}Home{%endblock%}
+
+{%block breadcrumb%}
+<li class="breadcrumb-item active">
+ <a href="{{url_for('base.index')}}">Home</a>
+</li>
+{%endblock%}
+
+{%block contents%}
+
+<div class="row">
+ {{flash_all_messages()}}
+ <div class="explainer">
+ <p>Welcome to the <strong>GeneNetwork Data Quality Control and Upload System</strong>. This system is provided to help in uploading your data onto GeneNetwork where you can do analysis on it.</p>
+
+ <p>Click on the menu items on the left to select the kind of data you want to upload.</p>
+
+ {%block extrapageinfo%}{%endblock%}
+ </div>
+</div>
+
+{%endblock%}