Skip to content

Commit

Permalink
Merge composer/master
Browse files Browse the repository at this point in the history
  • Loading branch information
ruskid committed Mar 24, 2015
2 parents e3ddf2c + c660964 commit 6da89e6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,18 +109,18 @@ use ruskid\stripe\StripeForm;

<!-- Use month and year in the same input. -->
<div class="form-group">
<label for="cvc" class="control-label">Card expiry</label>
<label for="exp-month-year" class="control-label">Card expiry</label>
<?= $form->monthAndYearInput() ?>
</div>

<!-- OR in two separate inputs. -->
<div class="form-group">
<label for="cvc" class="control-label">Month</label>
<label for="exp-month" class="control-label">Month</label>
<?= $form->monthInput() ?>
</div>

<div class="form-group">
<label for="cvc" class="control-label">Year</label>
<label for="exp-year" class="control-label">Year</label>
<?= $form->yearInput() ?>
</div>

Expand Down

0 comments on commit 6da89e6

Please sign in to comment.