Skip to content

Commit

Permalink
+ label in template/payment_us.tpl
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmarsan committed Jul 18, 2011
1 parent 4c3b0fd commit c19c710
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions template/payment/sagepay_us.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,21 @@
<div id="payment">
<table class="form">
<tr>
<td><?php echo $entry_cc_owner; ?></td>
<td>
<label for="cc_owner"><?php echo $entry_cc_owner; ?></label>
</td>
<td><input type="text" name="cc_owner" value="" /></td>
</tr>
<tr>
<td><?php echo $entry_cc_number; ?></td>
<td>
<label for="cc_number"><?php echo $entry_cc_number; ?></label>
</td>
<td><input type="text" name="cc_number" value="" /></td>
</tr>
<tr>
<td><?php echo $entry_cc_expire_date; ?></td>
<td>
<label for="cc_expire_date_month"><?php echo $entry_cc_expire_date; ?></label>
</td>
<td>
<select name="cc_expire_date_month">
<?php foreach ($months as $month) { ?>
Expand All @@ -26,7 +32,9 @@
</td>
</tr>
<tr>
<td><?php echo $entry_cc_cvv2; ?></td>
<td>
<label for="cc_cvv2"><?php echo $entry_cc_cvv2; ?></label>
</td>
<td><input type="text" name="cc_cvv2" value="" size="3" /></td>
</tr>
</table>
Expand Down

0 comments on commit c19c710

Please sign in to comment.