diff options
author | Frederick Yin <fkfd@fkfd.me> | 2021-11-23 19:20:23 +0800 |
---|---|---|
committer | Frederick Yin <fkfd@fkfd.me> | 2021-11-23 19:20:23 +0800 |
commit | 70b5dae19f8a91d13f05f3b39582d50718104d56 (patch) | |
tree | 341d9fce73747c9fb61e017470e5bd1f57e22e64 /jimbrella/templates/index.html | |
parent | 542c6ff92f29cb9c83f3c217f29646d25a1a4a20 (diff) |
Index page with QR codes
Diffstat (limited to 'jimbrella/templates/index.html')
-rw-r--r-- | jimbrella/templates/index.html | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/jimbrella/templates/index.html b/jimbrella/templates/index.html new file mode 100644 index 0000000..9e88117 --- /dev/null +++ b/jimbrella/templates/index.html @@ -0,0 +1,31 @@ +<!DOCTYPE html> +<html> + <head> + <title>JI Umbrella</title> + <link rel="stylesheet" href="/static/jimbrella.css" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + </head> + <body> + <h1>JI Umbrella</h1> + + <div id="container"> + <h3>Click or scan the QR codes below</h3> + <div class="tile-container"> + <div class="tile blue"> + <h2 class="banner-heading">Borrow</h2> + <a href="https://wj.sjtu.edu.cn/q/aYfDXrqG"> + <img src="/static/QR_takeaway.png" + alt="QR code for borrowing umbrella" class="transparent" /> + </a> + </div> + <div class="tile green"> + <h2 class="banner-heading">Return</h2> + <a href="https://wj.sjtu.edu.cn/q/Ai9Hb2XR"> + <img src="/static/QR_giveback.png" + alt="QR code for returning umbrella" class="transparent" /> + </a> + </div> + </div> + </div> + </body> +</html> |