-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (46 loc) · 1.9 KB
/
index.html
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>MapSwipe Event Registration</title>
<link rel="shortcut icon" href="./favicon.ico" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/css/bootstrap.min.css" integrity="sha384-1BmE4kWBq78iYhFldvKuhfTAU6auU8tT94WrHftjDbrCEXSU1oBoqyl2QvZ6jIW3" crossorigin="anonymous">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {
background: #f0f0f0;
}
.jumbotron {
background: #ffffff;
}
.vertical-center {
min-height: 100%;
min-height: 100vh;
display: flex;
align-items: center;
}
#logo-rc {
height: 60px;
}
</style>
</head>
<body>
<div class="container py-4 vertical-center">
<div class="p-5 mb-4 jumbotron rounded-3">
<div class="container-fluid py-5">
<img id="logo-rc" src="./redcross-logo.png" alt="American Red Cross logo" />
<br><br>
<h1 class="display-6 fw-bold">MapSwipe Event Registration</h1>
<p class="lead">The event registration link has changed. Please update your bookmarks to <code>https://ee.ifrc.org/BC2xhxHJ</code>
</p>
<hr class="my-4">
<a class="btn btn-primary btn-lg btn-secondary" href="https://ee.ifrc.org/BC2xhxHJ" role="button">
Head there now <i class="fa fa-external-link" aria-hidden="true"></i>
</a>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.min.js" integrity="sha384-QJHtvGhmr9XOIpI6YVutG+2QOK9T+ZnN4kzFN1RtK3zEFEIsxhlmWl5/YESvpZ13" crossorigin="anonymous"></script>
</body>
</html>