-
Notifications
You must be signed in to change notification settings - Fork 0
/
write-referral.html
55 lines (54 loc) · 2.35 KB
/
write-referral.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
55
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Fastpoke</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap" rel="stylesheet">
<link rel=icon href="assets/img/favicon.png" sizes="32x32" type="image/png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" media="print" href="print.css">
<script src="https://kit.fontawesome.com/1a4d6d985d.js" crossorigin="anonymous"></script>
</head>
<body class="reset">
<header>
<div class="container">
<h1>
<a href="index.html" class="logo">
<img src="assets/img/logo.svg" alt="Fastpoke Logo" />
</a>
</h1>
</div>
</header>
<main class="access-page">
<section class="access content" id="reset-01">
<div class="container">
<p>Hi Darren,<br/><br/>
You have received an invitation to write a referral for <a href="#">Allen Harper</a>. To write
the referral please click the link below:</p>
<a href="#" class="btn btn-primary btn-icon-left"><i class="fad fa-edit"></i> Write Referral</a>
<p>If you do not wish to write one, please ignore this email or contact
us at <a href="mailto:[email protected]">[email protected]</a>.<br/><br/>
We thank you for your willingness to share your experience and knowledge with the rest of the community!
<br/><br/><br/><br/>
Thanks,<br/>
<b>The Fastpoke Team</b></p>
</div>
<p class="copy">©<b>2020 Fastpoke, LLC</b><br/>All rights reserved.</p>
</section>
</main>
<script src="//code.jquery.com/jquery-3.3.1.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/ScrollMagic/2.0.7/ScrollMagic.min.js"></script>
<script>
var controller = new ScrollMagic.Controller({
globalSceneOptions: { triggerHook: 'onLeave' }
});
// build scenes
new ScrollMagic.Scene({triggerElement: "main"})
.setClassToggle("header", "active")
.addTo(controller);
</script>
<script src="script.js" async defer></script>
</body>
</html>