-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathREADME.txt
24 lines (17 loc) · 972 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
django-creditcard-fields provides custom form fields for collecting and
validating credit card information.
Example usage:
----------------------------------------------------------------------------
from django import forms
from fields import CreditCardField, ExpiryDateField, VerificationValueField
class PaymentForm(forms.Form):
name_on_card = forms.CharField(max_length=50, required=True)
card_number = CreditCardField(required=True)
expiry_date = ExpiryDateField(required=True)
card_code = VerificationValueField(required=True)
----------------------------------------------------------------------------
THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTY OF ANY KIND IS EXPRESSED OR
IMPLIED. YOU USE IT AT YOUR OWN RISK. IN NO EVENT SHALL THE AUTHORS BE
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
CONSEQUENTIAL DAMAGES ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.