overleaf/services/web/app/views/subscriptions/plans.jade

159 lines
4.5 KiB
Text
Raw Normal View History

2014-02-12 05:23:40 -05:00
extends ../layout
block content
2014-07-07 07:27:58 -04:00
.content-alt
.content.plans(ng-controller="PlansController")
.container
2014-02-12 05:23:40 -05:00
.row
2014-07-07 07:27:58 -04:00
.col-md-12
.page-header.centered.plans-header.text-centered
h1 Start Your 30-Day Free Trial Today
2014-02-12 05:23:40 -05:00
.row
2014-07-25 07:10:56 -04:00
.col-md-8.col-md-offset-2
p.text-centered ShareLaTeX is the world's easiest to use LaTeX editor. Stay up to date with your collaborators, keep track of all changes to your work, and use our LaTeX environment from anywhere in the world.
2014-07-07 07:27:58 -04:00
.row(ng-cloak)
.col-md-12
ul.nav.nav-pills
li(ng-class="{'active': ui.view == 'monthly'}")
a(
href,
ng-click="switchToMonthly()"
2014-07-07 07:27:58 -04:00
) Monthly
li(ng-class="{'active': ui.view == 'annual'}")
a(
href
ng-click="switchToAnnual()"
2014-07-07 07:27:58 -04:00
) Annual
li(ng-class="{'active': ui.view == 'student'}")
a(
href,
ng-click="switchToStudent()"
2014-07-07 07:27:58 -04:00
) Half Price Student Plans
.row(ng-cloak)
.col-md-12
.card-group.text-centered(ng-if="ui.view == 'monthly' || ui.view == 'annual'")
.card
.card-header
h2 Personal
.circle Free
ul.list-unstyled
2014-07-25 07:10:56 -04:00
li Only one collaborator
li  
2014-07-07 07:27:58 -04:00
li  
li
br
2014-07-25 07:10:56 -04:00
a.btn.btn-info(href="/register") Sign up now
2014-07-07 07:27:58 -04:00
.card.highlighted
.card-header
h2 Collaborator
.circle
span(ng-if="ui.view == 'monthly'")
2014-07-25 07:10:56 -04:00
| $15
span.small /mo
2014-07-07 07:27:58 -04:00
span(ng-if="ui.view == 'annual'")
2014-07-25 07:10:56 -04:00
| $180
span.small/yr
2014-07-07 07:27:58 -04:00
ul.list-unstyled
2014-07-25 07:10:56 -04:00
li
strong 10 collaborators per project
2014-07-07 07:27:58 -04:00
li Full document history
li Sync to Dropbox
li
br
2014-07-25 07:10:56 -04:00
a.btn.btn-info(
ng-href="#{baseUrl}/user/subscription/new?planCode=collaborator{{ ui.view == 'annual' && '-annual' || ''}}_free_trial", ng-click="signUpNowClicked('collaborator')"
) Start Free Trial!
2014-07-07 07:27:58 -04:00
.card
.card-header
h2 Professional
.circle
span(ng-if="ui.view == 'monthly'")
2014-07-25 07:10:56 -04:00
| $30
span.small /mo
2014-07-07 07:27:58 -04:00
span(ng-if="ui.view == 'annual'")
2014-07-25 07:10:56 -04:00
| $360
span.small /yr
2014-07-07 07:27:58 -04:00
ul.list-unstyled
2014-07-25 07:10:56 -04:00
li
strong Unlimited collaborators
2014-07-07 07:27:58 -04:00
li Full document history
li Sync to Dropbox
li
br
2014-07-25 07:10:56 -04:00
a.btn.btn-info(
ng-href="#{baseUrl}/user/subscription/new?planCode=professional{{ ui.view == 'annual' && '-annual' || ''}}_free_trial", ng-click="signUpNowClicked('professional')"
) Start Free Trial!
2014-07-07 07:27:58 -04:00
.card-group.text-centered(ng-if="ui.view == 'student'")
.card
.card-header
h2 Personal
.circle Free
ul.list-unstyled
2014-07-25 07:10:56 -04:00
li Only one collaborator
li  
2014-07-07 07:27:58 -04:00
li  
li
br
2014-07-25 07:10:56 -04:00
a.btn.btn-info(href="/register") Sign up now
2014-07-07 07:27:58 -04:00
.card.highlighted
.card-header
h2 Student
.circle
span
2014-07-25 07:10:56 -04:00
| $8
span.small /mo
2014-07-07 07:27:58 -04:00
ul.list-unstyled
2014-07-25 07:10:56 -04:00
li
strong 6 collaborators per project
2014-07-07 07:27:58 -04:00
li Full document history
li Sync to Dropbox
li
br
2014-07-25 07:10:56 -04:00
a.btn.btn-info(
ng-href="#{baseUrl}/user/subscription/new?planCode=student_free_trial", ng-click="signUpNowClicked('student')"
) Start Free Trial!
2014-07-07 07:27:58 -04:00
.card
.card-header
h2 Student (Annual)
.circle
span
2014-07-25 07:10:56 -04:00
| $80
span.small /yr
2014-07-07 07:27:58 -04:00
ul.list-unstyled
2014-07-25 07:10:56 -04:00
li
strong 6 collaborators per project
2014-07-07 07:27:58 -04:00
li Full document history
li Sync to Dropbox
li
br
2014-07-25 07:10:56 -04:00
a.btn.btn-info(
ng-href="#{baseUrl}/user/subscription/new?planCode=stud-ann_free_trial", ng-click="signUpNowClicked('student')"
) Start Free Trial!
2014-07-07 07:27:58 -04:00
.row(ng-cloak)
2014-07-25 07:10:56 -04:00
p.text-centered Choose the plan that works for you with our 30-day free trial. Cancel at any time.
2014-02-12 05:23:40 -05:00
.row
2014-07-07 07:27:58 -04:00
.col-md-12
.page-header.plans-header.plans-subheader.text-centered
h2 Enjoy all of these great features
.col-md-4
.card.features.text-centered
i.fa.fa-file-text-o.fa-5x
h4 Unlimited projects
2014-07-25 07:10:56 -04:00
p Create as many projects as you need.
2014-07-07 07:27:58 -04:00
.col-md-4
.card.features.text-centered
i.fa.fa-clock-o.fa-5x
h4 Full document history
p Never lose a step, we've got your back.
.col-md-4
.card.features.text-centered
i.fa.fa-dropbox.fa-5x
h4 Sync to Dropbox
p Access your projects everywhere.