##// END OF EJS Templates
components: user and alert channels components
components: user and alert channels components

File last commit:

r81:ef652bad
r81:ef652bad
Show More
user-alert-channel-email-new-view.html
30 lines | 1.5 KiB | text/html | HtmlLexer
<ng-include src="'templates/loader.html'" ng-if="$ctrl.loading.email"></ng-include>
<div ng-show="!$ctrl.loading.email">
<div class="panel panel-default">
<div class="panel-heading" ng-include="'templates/user/breadcrumbs.html'"></div>
<div class="panel-body">
<p>Adding email alert channel - after you authorize your email in the system we can send alerts directly to this mailbox.</p>
<form class="form-horizontal" name="$ctrl.channelForm" ng-submit="$ctrl.createChannel()">
<div class="form-group" id="row-email">
<data-form-errors errors="$ctrl.channelForm.ae_validation.email"></data-form-errors>
<label id="label-email" class="control-label col-sm-4 col-lg-3">
Email Address
<span class="required">*</span>
</label>
<div class="col-sm-8 col-lg-9">
<input class="form-control" type="text" ng-model="$ctrl.form.email">
</div>
</div>
<div class="form-group">
<label for="submit" class="control-label col-sm-4 col-lg-3">
</label>
<div class="col-sm-8 col-lg-9">
<input class="form-control btn btn-primary" name="submit" type="submit" value="Add email channel">
</div>
</div>
</form>
</div>
</div>
</div>