23 lines
723 B
HTML
23 lines
723 B
HTML
|
<vn-dialog
|
||
|
vn-id="SMSDialog"
|
||
|
on-response="$ctrl.onResponse(response)">
|
||
|
<tpl-body>
|
||
|
<h5 pad-small-v translate>Send SMS</h5>
|
||
|
<vn-horizontal>
|
||
|
<vn-textfield vn-one
|
||
|
label="Recipient"
|
||
|
model="$ctrl.sms.recipient">
|
||
|
</vn-textfield>
|
||
|
</vn-horizontal>
|
||
|
<vn-horizontal >
|
||
|
<vn-textarea vn-one
|
||
|
label="Message"
|
||
|
field="$ctrl.sms.message">
|
||
|
</vn-textarea>
|
||
|
</vn-horizontal>
|
||
|
</tpl-body>
|
||
|
<tpl-buttons>
|
||
|
<input type="button" response="CANCEL" translate-attr="{value: 'Cancel'}"/>
|
||
|
<button response="ACCEPT" translate>Send</button>
|
||
|
</tpl-buttons>
|
||
|
</vn-dialog>
|