diff options
author | ttt | 2017-05-13 00:29:47 +0530 |
---|---|---|
committer | ttt | 2017-05-13 00:29:47 +0530 |
commit | abf599be33b383a6a5baf9493093b2126a622ac8 (patch) | |
tree | 4c5ab6e0d935d5e65fabcf0258e4a00dd20a5afa /templates/account/home.html | |
download | SBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.tar.gz SBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.tar.bz2 SBHS-2018-Rpi-abf599be33b383a6a5baf9493093b2126a622ac8.zip |
added all server files
Diffstat (limited to 'templates/account/home.html')
-rw-r--r-- | templates/account/home.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/templates/account/home.html b/templates/account/home.html new file mode 100644 index 0000000..fed34a5 --- /dev/null +++ b/templates/account/home.html @@ -0,0 +1,23 @@ +{% extends "layout.html" %} + +{% block content %} +<div class="container"> + <div class="row"> + {% include "account/sub_nav.html" %} + <script> + document.getElementById("home-nav").classList.add("active"); + </script> + <div class="span12"> + <h2>Welcome to Single Board Heater System Lab</h2> + <br> + You can: + <ul> + <li>book your slot by going to the "Book slot" section above</li> + <li>download the client code for experiments using the download link above</li> + <li>download your previous experiment logs by going to "Download log files" section above</li> + <li>see the experiment video by going to "Show video" section above</li> + </ul> + </div> + </div> +</div> +{% endblock %}
\ No newline at end of file |