23 lines
727 B
HTML
23 lines
727 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="Destination"
|
|
model="$ctrl.sms.destination">
|
|
</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> |