blob: 9e88117d10477a77f530a690d710b0d803ca7770 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
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>
|