1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
<?php /** * Twilio SMS Test Form */
defined( 'ABSPATH' ) || exit;
?>
<div class="automatewoo-sms-test-container">
<h3><?php esc_html_e( 'Send Test SMS', 'automatewoo' ); ?></h3>
<table class="form-table"> <tbody>
<tr valign="top">
<th scope="row" class="titledesc"> <label><?php esc_html_e( 'Recipient', 'automatewoo' ); ?></label> </th>
<td class="forminp">
<fieldset> <legend class="screen-reader-text"><span><?php esc_html_e( 'Recipient', 'automatewoo' ); ?></span></legend> <input class="input-text" type="text" id="automatewoo-sms-test-recipient" value="" style="min-width:300px;"> </fieldset> </td> </tr>
<tr>
<th scope="row" class="titledesc"> <label><?php esc_html_e( 'Message', 'automatewoo' ); ?></label> </th>
<td class="forminp">
<fieldset> <legend class="screen-reader-text"><span><?php esc_html_e( 'Message', 'automatewoo' ); ?></span></legend> <textarea class="input-text regular-input" id="automatewoo-sms-test-message" style="min-width:300px; height: 75px;">Hello World!</textarea> </fieldset> </td> </tr>
<tr valign="top">
<th scope="row"> <fieldset> <input id="automatewoo-sms-test-twilio" class="button-primary" type="button" data-loading-text="<?php esc_html_e( 'Sending...', 'automatewoo' ); ?>" value="<?php esc_html_e( 'Send', 'automatewoo' ); ?>" > </fieldset> </th>
<td></td> </tr>
</tbody> </table>
</div>
|