26 lines
792 B
HTML
26 lines
792 B
HTML
<vn-dialog
|
|
vn-id="SMSDialog"
|
|
on-response="$ctrl.onResponse($response)">
|
|
<tpl-body>
|
|
<h5 class="vn-py-sm" translate>Send SMS</h5>
|
|
<vn-horizontal>
|
|
<vn-textfield
|
|
vn-one
|
|
label="Destination"
|
|
ng-model="$ctrl.sms.destination">
|
|
</vn-textfield>
|
|
</vn-horizontal>
|
|
<vn-horizontal >
|
|
<vn-textarea
|
|
vn-one
|
|
label="Message"
|
|
ng-model="$ctrl.sms.message"
|
|
rule>
|
|
</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> |