This repository was archived by the owner on Jan 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaffiliates.php
58 lines (51 loc) · 1.5 KB
/
affiliates.php
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
56
57
58
<?php
use \Sizzle\Bacon\Database\User;
define('TITLE', 'S!zzle - Affiliate Program');
require __DIR__.'/header.php';
?>
<style>
#program-section {
margin-top: 150px;
margin-bottom: 300px
}
.white-line {
margin-bottom: 20px;
}
</style>
</head>
<body id="affiliate-page">
<!-- =========================
HEADER
============================== -->
<header class="header" data-stellar-background-ratio="0.5">
<!-- SOLID COLOR BG -->
<div class=""> <!-- To make header full screen. Use .full-screen class with solid-color. Example: <div class="solid-color full-screen"> -->
<?php require __DIR__.'/navbar.php';?>
</div>
<!-- /END COLOR OVERLAY -->
</header>
<!-- /END HEADER -->
<section id="program-section">
<div class="container">
<div class="row">
<div class="col-lg-offset-3 col-lg-6">
<h2>S!zzle Affiliate Program</h2>
<div class="white-line" ></div>
<p class="text-justify">
S!zzle is a Nashville, TN based company dedicated to helping
recruiters. Do you know recruiters that might benefit from
our service? Introduce us to them using
<a href="mailto:affiliate@GoSizzle.io">affiliate@GoSizzle.io</a>
and we will cut you in on 10% of their first purchase.
That's up to $1,260 per lead! Just email us to get started.
</p>
</div>
</div>
</div>
</section>
<?php require __DIR__.'/footer.php';?>
<!-- =========================
PAGE SPECIFIC SCRIPTS
============================== -->
</body>
</html>