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

26 lines
792 B
HTML
Raw Normal View History

<vn-dialog
vn-id="SMSDialog"
2019-10-30 15:57:14 +00:00
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>
2019-10-30 15:57:14 +00:00
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
<button response="accept" translate>Send</button>
</tpl-buttons>
</vn-dialog>