|
14 | 14 | do_settings_sections('altapay-settings-group'); |
15 | 15 | @endphp |
16 | 16 | <table class="form-table"> |
17 | | - <tr valign="top"> |
| 17 | + <tr> |
18 | 18 | <th scope="row"><?php esc_html_e( 'Gateway URL', 'altapay' ); ?></th> |
19 | 19 | <td><input class="input-text regular-input" type="text" placeholder="{{__('Enter gateway url','altapay')}}" name="altapay_gateway_url" |
20 | 20 | value="{{$gatewayURL}}" required /> |
21 | 21 | <i><p style="font-size: 10px;">{{__('e.g. https://testgateway.altapaysecure.com', 'altapay')}}</p></i> |
22 | 22 | </td> |
23 | 23 | </tr> |
24 | | - <tr valign="top"> |
| 24 | + <tr> |
25 | 25 | <th scope="row"><?php esc_html_e( 'API username', 'altapay' ); ?></th> |
26 | 26 | <td><input class="input-text regular-input" type="text" placeholder="{{__('Enter API username','altapay')}}" name="altapay_username" |
27 | 27 | value="{{$username}}" required /> |
28 | 28 | </td> |
29 | 29 | </tr> |
30 | 30 |
|
31 | | - <tr valign="top"> |
| 31 | + <tr> |
32 | 32 | <th scope="row"><?php esc_html_e( 'API password', 'altapay' ); ?></th> |
33 | 33 | <td><input class="input-text regular-input" type="password" placeholder="{{__('Enter API password','altapay')}}" name="altapay_password" |
34 | 34 | value="{{$password}}" required /> |
35 | 35 | </td> |
36 | 36 | </tr> |
37 | | - <tr valign="top"> |
| 37 | + <tr> |
38 | 38 | <th scope="row"><?php esc_html_e( 'Payment page', 'altapay' ); ?></th> |
39 | 39 | <td> |
40 | 40 | @php // Validate if payment page exists by looping through the pages |
|
62 | 62 | </td> |
63 | 63 | </tr> |
64 | 64 |
|
65 | | - <tr valign="top"> |
| 65 | + <tr> |
66 | 66 | <th scope="row"><?php esc_html_e( 'Checkout form style', 'altapay' ); ?></th> |
67 | 67 | <td> |
68 | 68 | <select name="altapay_cc_form_styling"> |
|
74 | 74 | </td> |
75 | 75 | </tr> |
76 | 76 |
|
77 | | - <tr valign="top"> |
| 77 | + <tr> |
78 | 78 | <th scope="row"><?php esc_html_e( 'Payment page layout', 'altapay' ); ?></th> |
79 | 79 | <td> |
80 | 80 | <select name="altapay_payment_page_layout"> |
|
86 | 86 | </td> |
87 | 87 | </tr> |
88 | 88 |
|
89 | | - <tr valign="top"> |
| 89 | + <tr> |
90 | 90 | <th scope="row" colspan="2"> |
91 | 91 | <h2 style="background: #006064; color:white; line-height: 30px; padding-left: 1%;"><?php esc_html_e( 'Fraud detection service', 'altapay' ); ?></h2> |
92 | 92 | </th> |
93 | 93 | </tr> |
94 | 94 |
|
95 | | - <tr valign="top"> |
| 95 | + <tr> |
96 | 96 | <th scope="row"><?php esc_html_e( 'Fraud detection', 'altapay' ); ?></th> |
97 | 97 | <td> |
98 | 98 | <select name="altapay_fraud_detection"> |
|
101 | 101 | </select> |
102 | 102 | </td> |
103 | 103 | </tr> |
104 | | - <tr valign="top"> |
| 104 | + <tr> |
105 | 105 | <th scope="row"><?php esc_html_e( 'Release/Refund on Fraud detection', 'altapay' ); ?></th> |
106 | 106 | <td> |
107 | 107 | <select name="altapay_fraud_detection_action"> |
|
112 | 112 | </tr> |
113 | 113 |
|
114 | 114 | @if ($terminals) |
115 | | - <tr valign="top"> |
| 115 | + <tr> |
116 | 116 | <th scope="row" colspan="2"> |
117 | 117 | <h2 style="background: #006064; color:white; line-height: 30px; padding-left: 1%;"><?php esc_html_e( 'Terminals', 'altapay' ); ?></h2> |
118 | 118 | </th> |
119 | 119 | </tr> |
120 | 120 | @foreach ($terminals as $terminal) |
121 | | - <tr valign="top"> |
| 121 | + <tr> |
122 | 122 | <th scope="row">{{$terminal->name}}</th> |
123 | 123 | <td><input type="checkbox" name="altapay_terminals_enabled[]" |
124 | 124 | value="{{$terminal->key}}" |
|
0 commit comments