diff options
author | Adam LeBlanc <aleblanc@iol.unh.edu> | 2020-03-05 12:37:38 -0500 |
---|---|---|
committer | Adam LeBlanc <aleblanc@iol.unh.edu> | 2020-03-12 14:07:06 -0400 |
commit | 176ec9aacbc87e6077e8807c60f95a1ccbbc26e3 (patch) | |
tree | a3fa9455b640637eaa513c7da8da40ad76a97b94 /src/templates/akraino/dashboard | |
parent | 8eab4c4a801a367f74347627c19dd721f75c7a62 (diff) |
Add akraino template for dashboard
Signed-off-by: Adam LeBlanc <aleblanc@iol.unh.edu>
Change-Id: I02242e00779bcae7cd7622c2e891e4199c8d0e71
Signed-off-by: Adam LeBlanc <aleblanc@iol.unh.edu>
Diffstat (limited to 'src/templates/akraino/dashboard')
-rw-r--r-- | src/templates/akraino/dashboard/landing.html | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/src/templates/akraino/dashboard/landing.html b/src/templates/akraino/dashboard/landing.html new file mode 100644 index 0000000..d7f434b --- /dev/null +++ b/src/templates/akraino/dashboard/landing.html @@ -0,0 +1,22 @@ +{% extends "base/dashboard/landing.html" %} +{% block about_us %} + <p>The Shared Community Lab at the IOL aims to help development and testing of LFN projects by hosting hardware and providing access to the community.</p> + <p>To get started, you can request access to a server at the right.</p> +{% endblock about_us %} + +{% block btnGrp %} +<style> +.btnAkr { + color: #fff; + background-color: #39c0c0; +} +.btnAkr:hover{ + color: #fff; + background-color: #259a9a; +} +</style> +<p>To get started, book a pod below:</p> +<a class="btn btnAkr btn-lg d-flex flex-column justify-content-center align-content-center border text-white p-4" href="/booking/quick/">Book a Pod</a> +{% endblock btnGrp %} +{% block returningUsers %} +{% endblock returningUsers %} |