File: /home/artinside/sites.artinside.com.br/festival/shared/scripts/card-master/example/index.html
<!DOCTYPE html>
<html>
<head>
<title>Card – the better way to collect credit cards</title>
<meta name="viewport" content="initial-scale=1">
<!-- CSS is included through the card.js script -->
</head>
<body>
<div class="demo-container">
<div class="card-wrapper"></div>
<div class="form-container active">
<form action="">
<input placeholder="Card number" type="tel" name="number">
<input placeholder="Full name" type="text" name="name">
<input placeholder="MM/YY" type="tel" name="expiry">
<input placeholder="CVC" type="number" name="cvc">
</form>
</div>
</div>
<script src="../dist/card.js"></script>
<script>
new Card({
form: document.querySelector('form'),
container: '.card-wrapper'
});
</script>
</body>
</html>