salix/front/core/components/snackbar/snackbar.html

36 lines
1.2 KiB
HTML
Raw Normal View History

<div id="shapes"></div>
<vn-dialog
vn-id="supportDialog"
on-accept="$ctrl.sendToSupport()">
<tpl-body>
<section>
<h5 class="vn-py-sm" translate>Open CAU</h5>
<vn-horizontal>
<vn-textfield
vn-one
label="Subject"
ng-model="supportDialog.subject"
required="true">
</vn-textfield>
</vn-horizontal>
<vn-horizontal>
<vn-textarea vn-one
label="Reason"
ng-model="supportDialog.reason"
rows="2"
required="true">
</vn-textarea>
</vn-horizontal>
<vn-horizontal>
<span>
{{'Este cau contiene más información relevante para el equipo de informática' | translate}}:
</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>