b746e78d by Kevin Burton

User Manager updates from Kevin - Do not promote

1 parent f9f174a1
...@@ -49,27 +49,16 @@ ...@@ -49,27 +49,16 @@
49 <input type="hidden" name="type" value="<?php echo $action; ?>" /> 49 <input type="hidden" name="type" value="<?php echo $action; ?>" />
50 50
51 <div class="dashboard-section" style="margin-left:20px;margin-top:10px;"> 51 <div class="dashboard-section" style="margin-left:20px;margin-top:10px;">
52 <div class="dashboard-section-title">REGISTRATION STATUS</div> 52 <div class="dashboard-section-title">HOW TO PROCESS THE REGISTRATION:</div>
53 <div class="dashboard-section-links"></div> 53 <div class="dashboard-section-links"></div>
54 <div class="dashboard-section-content small"> 54 <div class="dashboard-section-content small">
55 <select name="status"> 55 <select name="status">
56 <option value="paid" <?php echo ($user_event_meta['status']=="paid") ? "selected" : ""; ?>>Paid/Free</option>
57 <option value="unpaid" <?php echo ($user_event_meta['status']=="unpaid") ? "selected" : ""; ?>>Invoice User</option> 56 <option value="unpaid" <?php echo ($user_event_meta['status']=="unpaid") ? "selected" : ""; ?>>Invoice User</option>
58 </select> 57 <option value="complementary" <?php echo ($user_event_meta['status']=="complementary") ? "selected" : ""; ?>>Complementary</option>
59 </div> 58 <option value="visa" <?php echo ($user_event_meta['status']=="paid" && $user_event_meta['extras']['paid_by']=="visa") ? "selected" : ""; ?>>Paid by Prepaid Visa</option>
60 </div> 59 <option value="mc" <?php echo ($user_event_meta['status']=="paid" && $user_event_meta['extras']['paid_by']=="mc") ? "selected" : ""; ?>>Paid by Prepaid Mastercard</option>
61 60 <option value="amex" <?php echo ($user_event_meta['status']=="paid" && $user_event_meta['extras']['paid_by']=="amex") ? "selected" : ""; ?>>Paid by Prepaid American Express</option>
62 <div class="dashboard-section" style="margin-left:20px;margin-top:10px;"> 61 <option value="cheque" <?php echo ($user_event_meta['status']=="paid" && $user_event_meta['extras']['paid_by']=="cheque") ? "selected" : ""; ?>>Paid by Cheque</option>
63 <div class="dashboard-section-title">PAID BY</div>
64 <div class="dashboard-section-links"></div>
65 <div class="dashboard-section-content small">
66 <select name="paid_by">
67 <option value="">Select payment method...</option>
68 <option value="visa" <?php echo ($user_event_meta['extras']['paid_by']=="visa") ? "selected" : ""; ?>>Visa</option>
69 <option value="mc" <?php echo ($user_event_meta['extras']['paid_by']=="mc") ? "selected" : ""; ?>>Mastercard</option>
70 <option value="amex" <?php echo ($user_event_meta['extras']['paid_by']=="amex") ? "selected" : ""; ?>>American Express</option>
71 <option value="cheque" <?php echo ($user_event_meta['extras']['paid_by']=="cheque") ? "selected" : ""; ?>>Cheque</option>
72 <option value="other" <?php echo ($user_event_meta['extras']['paid_by']=="other") ? "selected" : ""; ?>>Other</option>
73 </select> 62 </select>
74 </div> 63 </div>
75 </div> 64 </div>
......