diff options
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> |