xhtml nits
parent
5955445fbb
commit
48be5a1191
|
@ -131,11 +131,11 @@ $j(document).ready(function() {
|
|||
</div>
|
||||
<div class="form-row clearfix">
|
||||
<label>Card Number:</label>
|
||||
<input id="card_Number" type="text" class="card-number"/>
|
||||
<input id="card_Number" type="text" class="card-number" />
|
||||
</div>
|
||||
<div class="form-row clearfix cvc">
|
||||
<label>CVC:</label>
|
||||
<input id="card_CVC" type="text" size="4" autocomplete="off" class="card-cvc"/> <span id="cvc_help">(what is this?)</span>
|
||||
<input id="card_CVC" type="text" size="4" autocomplete="off" class="card-cvc" /> <span id="cvc_help">(what is this?)</span>
|
||||
<div id="cvc_answer"><img src="/static/images/cvcimage.jpeg">For most cards, this is a 3-digit number at the end of the signature strip on the back. For American Express, it's a four-digit number in small print on the front.</div>
|
||||
</div>
|
||||
<div class="form-row clearfix initial_values">
|
||||
|
|
|
@ -66,17 +66,17 @@ Stripe Test:
|
|||
{% csrf_token %}
|
||||
<div class="form-row">
|
||||
<label>Card Number</label>
|
||||
<input type="text" size="20" autocomplete="off" class="card-number"/>
|
||||
<input type="text" size="20" autocomplete="off" class="card-number" />
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<label>CVC</label>
|
||||
<input type="text" size="4" autocomplete="off" class="card-cvc"/>
|
||||
<input type="text" size="4" autocomplete="off" class="card-cvc" />
|
||||
</div>
|
||||
<div class="form-row">
|
||||
<label>Expiration (MM/YYYY)</label>
|
||||
<input type="text" size="2" class="card-expiry-month"/>
|
||||
<input type="text" size="2" class="card-expiry-month" />
|
||||
<span> / </span>
|
||||
<input type="text" size="4" class="card-expiry-year"/>
|
||||
<input type="text" size="4" class="card-expiry-year" />
|
||||
</div>
|
||||
<button type="submit" class="submit-button">Submit Payment</button>
|
||||
</form>
|
||||
|
|
Loading…
Reference in New Issue