-
Notifications
You must be signed in to change notification settings - Fork 0
/
paypal-return.php
71 lines (62 loc) · 3.57 KB
/
paypal-return.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
59
60
61
62
63
64
65
66
67
68
69
70
71
<!doctype html>
<html class="no-js" <?php language_attributes(); ?>>
<?php get_template_part('templates/head'); ?>
<body <?php body_class(); ?>>
<!--[if lt IE 9]>
<div class="alert alert-warning">
<?php _e('You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.', 'sage'); ?>
</div>
<![endif]-->
<?php
do_action('get_header');
get_template_part('templates/header');
?>
<div class="wrap" role="document">
<div class="content container">
<main class="main " role="main">
<div class="row">
<div class="col-xs-12 col-sm-6 col-sm-offset-3 text-center">
<div style="border: 1px solid #e5e5e5; padding: 20px;text-align: center;">
<img src="/app/uploads/2015/09/damnplus-black.png" alt="DAMN+">
<?php
if(!defined('WPINC')) // MUST have WordPress.
exit("Do not access this file directly.");
?>
<!-- Response Section (this is auto-filled by s2Member, based on what action has taken place). -->
<!-- Although NOT recommended, you can remove the response Replacement Code and build your own message if you prefer. -->
<!-- It is NOT recommended, because the dynamic response message may vary, depending on what action has taken place. -->
<div id="s2member-default-return-response-section" class="s2member-return-section s2member-return-response-section s2member-default-return-response-section">
<div id="s2member-default-return-response-div" class="s2member-return-div s2member-return-response-div s2member-default-return-response-div">
%%response%% <!-- (this is auto-filled by s2Member, based on what action has taken place). -->
<div id="s2member-default-return-continue" class="s2member-return-continue s2member-default-return-continue">
%%continue%% <!-- (auto-filled by s2Member, based on what action has taken place). -->
<br /><br />
<a href="/wp/wp-login.php?action=register" class="btn btn-primary btn-lg marginBottom" title="REGISTER NOW">REGISTER NOW</a>
</div>
</div>
<div style="clear:both;"></div>
</div>
<!-- Support Section (contains information about how a Customer can contact support). -->
<div id="s2member-default-return-support-section" class="s2member-return-section s2member-return-support-section s2member-default-return-support-section">
<div id="s2member-default-return-support-div" class="s2member-return-div s2member-return-support-div s2member-default-return-support-div">
%%support%% <!-- (this is auto-filled by s2Member, based on configuration). -->
If you need assistance, <a href="/join-damn-plus/assistance">go here</a>.
</div>
<div style="clear:both;"></div>
</div>
%%tracking%% <!-- (this is auto-filled, supports tracking codes integrated w/ s2Member). -->
<div style="clear:both;"></div>
</div>
</div>
</div>
</main><!-- /.main -->
</div><!-- /.content -->
<div class="clearthis"></div>
</div><!-- /.wrap -->
<?php
do_action('get_footer');
get_template_part('templates/footer');
wp_footer();
?>
</body>
</html>