overleaf/services/web/app/views/referal/bonus.jade

168 lines
5.9 KiB
Text
Raw Normal View History

2014-02-12 05:23:40 -05:00
extends ../layout
block content
2014-07-07 10:54:40 -04:00
.content.content-alt
.container.bonus
.row
.col-md-8.col-md-offset-2
.card
.container-fluid(ng-controller="BonusLinksController")
2014-07-07 10:54:40 -04:00
.row
.col-md-12
.page-header
h1 Help us spread the word about ShareLaTeX.
.row
.col-md-10.col-md-offset-1
h2 Share ShareLaTeX with your friends and colleagues and unlock the rewards below
.row
.col-md-8.col-md-offset-2.bonus-banner
.bonus-top
.row
.col-md-8.col-md-offset-2.bonus-banner
.title
a(href='https://twitter.com/share?text=is%20trying%20out%20the%20online%20LaTeX%20Editor%20ShareLaTeX&url=#{encodeURIComponent(buildReferalUrl("t"))}&counturl=https://www.sharelatex.com', target="_blank").twitter Tweet
.row
.col-md-8.col-md-offset-2.bonus-banner
.title
a(href='#', onclick='postToFeed(); return false;').facebook Post on Facebook
.row
.col-md-8.col-md-offset-2.bonus-banner
.title
a(href="https://plus.google.com/share?url=#{encodeURIComponent(buildReferalUrl('gp'))}", onclick="javascript:window.open(this.href, '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;").google-plus Share us on Google+
.row
.col-md-8.col-md-offset-2.bonus-banner
.title
a(href='mailto:?subject=Online LaTeX editor you may like &body=Hey, I have been using the online LaTeX editor ShareLaTeX recently and thought you might like to check it out. #{encodeURIComponent(buildReferalUrl("e"))}', title='Share by Email').email Email us to your friends
.row
.col-md-8.col-md-offset-2.bonus-banner
.title
a(href='#link-modal', data-toggle="modal", ng-click="openLinkToUsModal()").link Link to us from your website
2014-07-07 10:54:40 -04:00
.row
.col-md-10.col-md-offset-1.bonus-banner
h2.direct-link Direct Link
pre.text-centered #{buildReferalUrl("d")}
.row.ab-bonus
.col-md-10.col-md-offset-1.bonus-banner
p.thanks When someone starts using ShareLaTeX after your recommendation we'll give you some <strong>free stuff</strong> to say thanks! Check your progress below.
.row.ab-bonus
.col-md-10.col-md-offset-1.bonus-banner(style="position: relative; height: 30px; margin-top: 20px;")
- for (var i = 0; i <= 10; i++) {
- if (refered_user_count == i)
.number(style="left: #{i}0%").active #{i}
- else
.number(style="left: #{i}0%") #{i}
- }
.row.ab-bonus
.col-md-10.col-md-offset-1.bonus-banner
.progress
- if (refered_user_count == 0)
div(style="text-align: center; padding: 4px;") Spread the word and fill this bar up
.progress-bar.progress-bar-info(style="width: #{refered_user_count}0%")
.row.ab-bonus
.col-md-10.col-md-offset-1.bonus-banner(style="position: relative; height: 70px;")
.perk(style="left: 10%;", class = refered_user_count >= 1 ? "active" : "") One free collaborator
.perk(style="left: 30%;", class = refered_user_count >= 3 ? "active" : "") Three free collaborators
.perk(style="left: 60%;", class = refered_user_count >= 6 ? "active" : "") Free Dropbox and History
.perk(style="left: 90%;", class = refered_user_count >= 9 ? "active" : "") Free Professional account
.row.ab-bonus
.col-md-10.col-md-offset-1.bonus-banner
- if (refered_user_count == 0)
p.thanks You've not introduced anyone to ShareLaTeX yet. Get sharing!
- else if (refered_user_count == 1)
p.thanks You've introduced <strong>#{refered_user_count}</strong> person to ShareLaTeX. Good job, but can you get some more?
- else
p.thanks You've introduced <strong>#{refered_user_count}</strong> people to ShareLaTeX. Good job!
script(type="text/ng-template", id="BonusLinkToUsModal")
2014-07-07 10:54:40 -04:00
.modal-header
button.close(
type="button"
data-dismiss="modal"
ng-click="cancel()"
) &times;
2014-07-07 10:54:40 -04:00
h3 Link to ShareLaTeX
.modal-body.modal-body-share.link-modal
2014-07-07 10:54:40 -04:00
p You can link to ShareLaTeX with the following HTML:
p
textarea.col-md-12(readonly=true)
2014-07-07 10:54:40 -04:00
<a href="#{buildReferalUrl("d")}">Online LaTeX Editor ShareLaTeX</a>
2014-07-07 10:54:40 -04:00
p Thanks!
.modal-footer()
button.btn.btn-default(
ng-click="cancel()",
)
span Close
2014-02-12 05:23:40 -05:00
script(type='text/javascript', src='//platform.twitter.com/widgets.js')
script(src='https://connect.facebook.net/en_US/all.js')
2014-07-07 10:54:40 -04:00
script(type='text/javascript').
2014-02-12 05:23:40 -05:00
FB.init({appId: "148710621956179", status: true, cookie: true});
function postToFeed() {
// calling the API ...
var obj = {
method: 'feed',
redirect_uri: 'https://www.sharelatex.com',
link: '!{buildReferalUrl("fb")}',
picture: 'https://www.sharelatex.com/brand/logo/logosmall.png',
2014-02-12 05:23:40 -05:00
name: 'ShareLaTeX - Online LaTeX Editor',
caption: 'Free Unlimited Projects and Compiles',
description: 'ShareLaTeX is a free online LaTeX Editor. Real time collaboration like Google Docs, with Dropbox, history and auto-complete'
};
function callback(response) {
// document.getElementById('msg').innerHTML = "Post ID: " + response['post_id'];
}
FB.ui(obj, callback);
}
2014-07-07 10:54:40 -04:00
script(type="text/javascript").
2014-02-12 05:23:40 -05:00
$(function() {
$(".twitter").click(function() {
ga('send', 'event', 'referal-button', 'clicked', "twitter")
2014-02-12 05:23:40 -05:00
});
$(".email").click(function() {
ga('send', 'event', 'referal-button', 'clicked', "email")
2014-02-12 05:23:40 -05:00
});
$(".facebook").click(function() {
ga('send', 'event', 'referal-button', 'clicked', "facebook")
2014-02-12 05:23:40 -05:00
});
$(".google-plus").click(function() {
ga('send', 'event', 'referal-button', 'clicked', "google-plus")
2014-02-12 05:23:40 -05:00
});
$(".link").click(function() {
ga('send', 'event', 'referal-button', 'clicked', "direct-link")
2014-02-12 05:23:40 -05:00
});
});