Files
guacamole-client/guacamole/src/main/webapp/app/form/templates/emailField.html
2019-08-08 22:13:05 -07:00

12 lines
346 B
HTML

<div class="email-field">
<input type="email"
ng-disabled="disabled"
ng-attr-id="{{ fieldId }}"
ng-model="model"
ng-hide="readOnly"
guac-focus="focused"
autocorrect="off"
autocapitalize="off"/>
<a href="mailto:{{model}}" ng-show="readOnly">{{model}}</a>
</div>