salix/modules/client/front/sms/index.html

26 lines
791 B
HTML
Raw Normal View History

<vn-dialog
vn-id="SMSDialog"
on-response="$ctrl.onResponse(response)">
<tpl-body>
<h5 class="vn-py-sm" translate>Send SMS</h5>
<vn-horizontal>
2019-10-09 22:47:29 +00:00
<vn-textfield
vn-one
2019-04-16 05:59:12 +00:00
label="Destination"
2019-10-09 22:47:29 +00:00
ng-model="$ctrl.sms.destination">
</vn-textfield>
</vn-horizontal>
<vn-horizontal >
2019-10-09 22:47:29 +00:00
<vn-textarea
vn-one
label="Message"
2019-10-09 22:47:29 +00:00
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>