if you are worried about your cc details, pay with Paypal
Jul 14, 2015
10
Level 1
Subscription Payment
Since the begin of Laracasts that i never subscribed to it, despiste i know Jeffry Way video tutorials from Nettuts and all 50% off promotions.
The reason is one:
- i do not like to spread my credit card details over all the internet.
I see in the form submission for the subscription the following text:
Want full access to the Laracasts catalog? Okay, first, let's add a credit card to your account. Don't worry — your private card number will never touch our servers.
But if i inspect it i will realise that the form will touch Laracasts web servers:
<form method="POST" action="https://laracasts.com/admin/card" accept-charset="UTF-8" id="billing-form"><input name="_token" type="hidden" value="AtPMcwCEasTTtiR3QQIvVI6McFZA8E7TO0agbqKy">
<input name="_token" type="hidden" value="AtPMcwCEasTTtiR3QQIvVI6McFZA8E7TO0agbqKy">
<!-- Credit Card Number -->
<div class="form-group row">
<label for="cc-number" class="col-md-3 control-label">Credit Card Number:</label>
<div class="col-md-8">
<input type="text" id="cc-number" class="form-control input-md cc-number" data-stripe="number" placeholder="" required="">
</div>
</div>
<!-- Expiration Date -->
<div class="form-group row">
<label class="col-md-3 control-label">Expiration Date:</label>
<div class="col-md-3">
<select class="form-control cc-expiration-month" data-stripe="exp-month"><option value="1">January</option><option value="2">February</option><option value="3">March</option><option value="4">April</option><option value="5">May</option><option value="6">June</option><option value="7">July</option><option value="8">August</option><option value="9">September</option><option value="10">October</option><option value="11">November</option><option value="12">December</option></select>
</div>
<div class="col-md-2 no-left-arm">
<select class="form-control cc-expiration-year" data-stripe="exp-year"><option value="2015">2015</option><option value="2016">2016</option><option value="2017">2017</option><option value="2018">2018</option><option value="2019">2019</option><option value="2020">2020</option><option value="2021">2021</option><option value="2022">2022</option><option value="2023">2023</option><option value="2024">2024</option><option value="2025">2025</option><option value="2026">2026</option><option value="2027">2027</option><option value="2028">2028</option><option value="2029">2029</option><option value="2030">2030</option></select>
</div>
</div>
<!-- CVV Number -->
<div class="form-group row">
<label for="cvv" class="col-md-3 control-label">CVV Number:</label>
<div class="col-md-3">
<input type="text" id="cvv" placeholder="" class="form-control input-md cvc" data-stripe="cvc" required="">
</div>
</div>
<div class="payment-errors col-md-8" style="display:none">
</div>
<footer>
<button type="submit" class="btn btn-primary">Add Credit Card</button>
</footer>
</form>
Please or to participate in this conversation.