mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
Simple layout for subscription form.
This commit is contained in:
parent
79d9e54458
commit
4814fc2606
4 changed files with 61 additions and 2 deletions
|
@ -176,7 +176,54 @@ block content
|
||||||
div.pull-right
|
div.pull-right
|
||||||
strong {{price.currency.symbol}}{{price.next.total}}
|
strong {{price.currency.symbol}}{{price.next.total}}
|
||||||
.col-md-12(sixpack-when="simple")
|
.col-md-12(sixpack-when="simple")
|
||||||
span Lorem ipsum!
|
form(ng-show="planName")
|
||||||
|
.row
|
||||||
|
.col-md-12
|
||||||
|
.form-group
|
||||||
|
.row
|
||||||
|
.col-md-6
|
||||||
|
label.radio-inline
|
||||||
|
input.paymentTypeOption(type="radio", value="credit_card", ng-model="paymentMethod")
|
||||||
|
i.fa.fa-cc-mastercard.fa-3x
|
||||||
|
span
|
||||||
|
i.fa.fa-cc-visa.fa-3x
|
||||||
|
.col-md-6
|
||||||
|
label.radio-inline
|
||||||
|
input.paymentTypeOption(type="radio", value="paypal", ng-model="paymentMethod")
|
||||||
|
i.fa.fa-cc-paypal.fa-3x
|
||||||
|
//- TODO Validation messages
|
||||||
|
.form-group
|
||||||
|
label(for="card-name") Name on card
|
||||||
|
input#card-name.form-control(type="text")
|
||||||
|
.form-group(ng-class="validation.number == false || validation.errorFields.number ? 'has-error' : ''")
|
||||||
|
label(for="card-no") Card number
|
||||||
|
input#card-no.form-control(type="credit card", ng-model='data.number', ng-blur="validateCardNumber()")
|
||||||
|
.row
|
||||||
|
.col-xs-6
|
||||||
|
label Valid thru {{ data.mmYY }}
|
||||||
|
input.form-control(
|
||||||
|
type="text"
|
||||||
|
ng-model="data.mmYY"
|
||||||
|
cc-format-expiry
|
||||||
|
)
|
||||||
|
.col-xs-6
|
||||||
|
.form-group.has-feedback(ng-class="validation.correctCvv == false || validation.errorFields.cvv ? 'has-error' : ''")
|
||||||
|
label Security code
|
||||||
|
input.form-control(type="cvc", ng-model='data.cvv', ng-blur="validateCvv()")
|
||||||
|
.form-control-feedback
|
||||||
|
a.form-helper(
|
||||||
|
href
|
||||||
|
tooltip-template="'cvv-tooltip-tpl.html'"
|
||||||
|
tooltip-trigger="mouseenter"
|
||||||
|
tooltip-append-to-body="true"
|
||||||
|
) ?
|
||||||
|
.form-group(ng-class="validation.errorFields.country ? 'has-error' : ''")
|
||||||
|
label(for="country") Country
|
||||||
|
select#country.form-control(data-recurly="country", ng-model="data.country", ng-change="updateCountry()", required)
|
||||||
|
mixin countries_options()
|
||||||
|
.row
|
||||||
|
.col-xs-12
|
||||||
|
button.btn.btn-success.btn-block(ng-click="submit()", ng-disabled="processing", sixpack-convert="payment-left-menu-bottom") #{translate("upgrade_now")}
|
||||||
|
|
||||||
span(sixpack-switch="payment-left-menu-bottom")
|
span(sixpack-switch="payment-left-menu-bottom")
|
||||||
|
|
||||||
|
@ -272,6 +319,13 @@ block content
|
||||||
script(type="text/javascript").
|
script(type="text/javascript").
|
||||||
ga('send', 'event', 'pageview', 'payment_form', "#{plan_code}")
|
ga('send', 'event', 'pageview', 'payment_form', "#{plan_code}")
|
||||||
|
|
||||||
|
script(
|
||||||
|
type="text/ng-template"
|
||||||
|
id="cvv-tooltip-tpl.html"
|
||||||
|
)
|
||||||
|
p For #[strong Visa, MasterCard and Discover], the #[strong 3 digits] on the #[strong back] of your card.
|
||||||
|
p For #[strong American Express], the #[strong 4 digits] on the #[strong front] of your card.
|
||||||
|
|
||||||
mixin countries_options()
|
mixin countries_options()
|
||||||
option(value='', disabled, selected) #{translate("country")}
|
option(value='', disabled, selected) #{translate("country")}
|
||||||
option(value='-') --------------
|
option(value='-') --------------
|
||||||
|
|
|
@ -26,6 +26,7 @@ define [
|
||||||
"directives/onEnter"
|
"directives/onEnter"
|
||||||
"directives/selectAll"
|
"directives/selectAll"
|
||||||
"directives/maxHeight"
|
"directives/maxHeight"
|
||||||
|
"directives/creditCards"
|
||||||
"services/queued-http"
|
"services/queued-http"
|
||||||
"filters/formatDate"
|
"filters/formatDate"
|
||||||
"__MAIN_CLIENTSIDE_INCLUDES__"
|
"__MAIN_CLIENTSIDE_INCLUDES__"
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
define [
|
define [
|
||||||
"base"
|
"base",
|
||||||
|
"directives/creditCards"
|
||||||
], (App)->
|
], (App)->
|
||||||
|
|
||||||
App.controller "NewSubscriptionController", ($scope, MultiCurrencyPricing, abTestManager, $http, sixpack, event_tracking)->
|
App.controller "NewSubscriptionController", ($scope, MultiCurrencyPricing, abTestManager, $http, sixpack, event_tracking)->
|
||||||
|
@ -14,6 +15,7 @@ define [
|
||||||
|
|
||||||
$scope.paymentMethod = "credit_card"
|
$scope.paymentMethod = "credit_card"
|
||||||
|
|
||||||
|
|
||||||
$scope.data =
|
$scope.data =
|
||||||
number: ""
|
number: ""
|
||||||
month: ""
|
month: ""
|
||||||
|
@ -28,6 +30,7 @@ define [
|
||||||
city:""
|
city:""
|
||||||
country:window.countryCode
|
country:window.countryCode
|
||||||
coupon: window.couponCode
|
coupon: window.couponCode
|
||||||
|
mmYY: ""
|
||||||
|
|
||||||
|
|
||||||
$scope.validation =
|
$scope.validation =
|
||||||
|
|
|
@ -75,6 +75,7 @@
|
||||||
@import "app/wiki.less";
|
@import "app/wiki.less";
|
||||||
@import "app/translations.less";
|
@import "app/translations.less";
|
||||||
@import "app/contact-us.less";
|
@import "app/contact-us.less";
|
||||||
|
@import "app/subscription.less";
|
||||||
@import "app/sprites.less";
|
@import "app/sprites.less";
|
||||||
|
|
||||||
@import "../js/libs/pdfListView/TextLayer.css";
|
@import "../js/libs/pdfListView/TextLayer.css";
|
||||||
|
|
Loading…
Reference in a new issue