35 lines
1.2 KiB
HTML
35 lines
1.2 KiB
HTML
<vn-dialog
|
|
vn-id="SMSDialog"
|
|
on-response="$ctrl.onResponse($response)">
|
|
<tpl-body>
|
|
<section class="SMSDialog">
|
|
<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
|
|
vn-id="message"
|
|
label="Message"
|
|
ng-model="$ctrl.sms.message"
|
|
rows="5"
|
|
maxlength="160"
|
|
rule>
|
|
</vn-textarea>
|
|
</vn-horizontal>
|
|
<vn-horizontal>
|
|
<span>
|
|
{{'Characters remaining' | translate}}: {{$ctrl.charactersRemaining()}}
|
|
</span>
|
|
</vn-horizontal>
|
|
</section>
|
|
</tpl-body>
|
|
<tpl-buttons>
|
|
<input type="button" response="cancel" translate-attr="{value: 'Cancel'}"/>
|
|
<button response="accept" translate>Send</button>
|
|
</tpl-buttons>
|
|
</vn-dialog> |