-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMMS.html
More file actions
47 lines (44 loc) · 1.58 KB
/
Copy pathMMS.html
File metadata and controls
47 lines (44 loc) · 1.58 KB
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
<script type="text/javascript">
RED.nodes.registerType('ATT MMS',{
category: 'att_sms-function',
color: '#727272',
defaults: {
name: {value:""},
numbers: {value:"6784445555,5556667777"},
filename:{value:"test.gif"},
message:{value:""},
blackflag:{value:""},
},
outputs:1,
inputs:1,
icon: "mms.png",
label: function() {
return "MMS NOT IMPLEMENTED";
}
});
</script>
<script type="text/x-red" data-template-name="ATT MMS">
<div class="form-row">
<label for="node-input-name"><i class="icon-tag"></i> Name</label>
<input type="text" id="node-input-name" placeholder="Name">
</div>
<div class="form-row">
<label for="node-input-numbers"><i class="icon-tag"></i> Numbers<br> comma separated</label>
<input type="text" id="node-input-numbers" placeholder="numbers">
</div>
<div class="form-row">
<label for="node-input-message"><i class="icon-tag"></i>Message</label>
<input type="text" id="node-input-message" placeholder="message">
</div>
<div class="form-row">
<label for="node-input-filename"><i class="icon-tag"></i>Filename</label>
<input type="text" id="node-input-filename">
</div>
<div class="form-row">
<label for="node-input-blackflag"><i class="icon-tag"></i> BlackFlag Key</label>
<input type="text" id="node-input-blackflag">
</div>
</script>
<script type="text/x-red" data-help-name="ATT MMS">
<p>Not currently functional</p>
</script>