2018-04-10 14:28:53 -07:00
static/app/angular/certificates/certificate/tracking.tpl.html< form name = "trackingForm" novalidate >
2016-12-26 15:55:11 -08:00
< div class = "form-horizontal" >
< div class = "form-group"
ng-class="{'has-error': trackingForm.ownerEmail.$invalid, 'has-success': !trackingForm.$invalid& & trackingForm.ownerEmail.$dirty}">
< label class = "control-label col-sm-2" >
Owner
< / label >
2015-11-24 14:53:22 -08:00
2016-12-26 15:55:11 -08:00
< div class = "col-sm-10" >
< input type = "email" name = "ownerEmail" ng-model = "certificate.owner" placeholder = "TeamDL@example.com"
uib-tooltip="This is the certificates team distribution list or main point of contact"
class="form-control"
required/>
2015-11-24 14:53:22 -08:00
2016-12-26 15:55:11 -08:00
< p ng-show = "trackingForm.ownerEmail.$invalid && !trackingForm.ownerEmail.$pristine" class = "help-block" >
You must enter an Certificate owner< / p >
< / div >
< / div >
< div class = "form-group" >
< label class = "control-label col-sm-2" >
Roles
< / label >
< div class = "col-sm-10" ng-model = "certificate" role-select > < / div >
< / div >
< div ng-include = "'angular/certificates/certificate/notifications.tpl.html'" > < / div >
< div class = "form-group"
ng-class="{'has-error': trackingForm.commonName.$invalid, 'has-success': !trackingForm.$invalid& & trackingForm.commonName.$dirty}">
< label class = "control-label col-sm-2" >
Common Name
< / label >
< div class = "col-sm-10" >
< input name = "commonName"
uib-tooltip="If you need a certificate with multiple domains enter your primary domain here and the rest under 'Subject Alternate Names' by clicking 'More Options'"
ng-model="certificate.commonName" placeholder="Common Name" class="form-control"
ng-maxlength="64"
required/>
< p ng-show = "trackingForm.commonName.$invalid && !trackingForm.commonName.$pristine" class = "help-block" >
You must
enter a common name and it must be less than 64 characters< / p >
< / div >
< / div >
2017-01-27 21:05:25 -08:00
< div class = "form-group" >
< label class = "control-label col-sm-2" >
Subject Alternate Names
< / label >
< div class = "col-sm-4" >
< select class = "form-control" ng-model = "certificate.subAltType"
ng-options="item for item in ['DNSName', 'IPAddress', 'IPNetwork', 'uniformResourceIdentifier', 'directoryName','rfc822Name', 'registeredID']">< / select >
< / div >
< div class = "col-sm-6" >
< div class = "input-group" >
< input tooltip-trigger = "focus" tooltip-placement = "top"
uib-tooltip="String or Base64-encoded DER ASN.1 structure for the value" class="form-control"
name="value" ng-model="certificate.subAltValue" placeholder="Value" class="form-control" required/>
< span class = "input-group-btn" >
< button ng-click = "certificate.attachSubAltName()" class = "btn btn-info" > Add< / button >
< / span >
< / div >
< / div >
< / div >
< div class = "form-group" >
< div class = "col-sm-10 col-sm-offset-2" >
< table class = "table" >
< tr ng-repeat = "alt in certificate.extensions.subAltNames.names track by $index" >
< td > {{ alt.nameType }}< / td >
< td > {{ alt.value }}< / td >
< td >
< button type = "button" ng-click = "certificate.removeSubAltName($index)"
class="btn btn-danger btn-sm pull-right">Remove
< / button >
< / td >
< / tr >
< / table >
< / div >
< / div >
2016-12-26 15:55:11 -08:00
< div class = "form-group"
ng-class="{'has-error': trackingForm.description.$invalid, 'has-success': !trackingForm.$invalid& & trackingForm.description.$dirty}">
< label class = "control-label col-sm-2" >
Description
< / label >
2015-11-24 14:53:22 -08:00
2016-12-26 15:55:11 -08:00
< div class = "col-sm-10" >
2015-11-24 14:53:22 -08:00
< textarea name = "description" ng-model = "certificate.description" placeholder = "Something elegant"
class="form-control" required>< / textarea >
2016-12-26 15:55:11 -08:00
< p ng-show = "trackingForm.description.$invalid && !trackingForm.description.$pristine"
class="help-block">You
must give a short description about this certificate will be used for.< / p >
< / div >
< / div >
< div class = "form-group"
ng-class="{'has-error': trackingForm.selectedAuthority.$invalid, 'has-success': !trackingForm.$invalid& & trackingForm.selectedAuthority.$dirty}">
< label class = "control-label col-sm-2" >
Certificate Authority
< / label >
< div class = "col-sm-10" >
< ui-select class = "input-md" ng-model = "certificate.authority" theme = "bootstrap" title = "choose an authority" >
< ui-select-match placeholder = "select an authority..." > {{$select.selected.name}}< / ui-select-match >
< ui-select-choices class = "form-control" repeat = "authority in authorities"
refresh="getAuthoritiesByName($select.search)"
refresh-delay="300">
< div ng-bind-html = "authority.name | highlight: $select.search" > < / div >
< small >
< span ng-bind-html = "''+authority.description | highlight: $select.search" > < / span >
< / small >
< / ui-select-choices >
< / ui-select >
< / div >
< / div >
< div class = "form-group" >
< label class = "control-label col-sm-2"
uib-tooltip="If no date is selected Lemur attempts to issue a 2 year certificate">
Validity Range < span class = "glyphicon glyphicon-question-sign" > < / span >
< / label >
< div class = "col-sm-2" >
< select ng-model = "certificate.validityYears" class = "form-control" >
< option value = "" > -< / option >
< option value = "1" > 1 year< / option >
< option value = "2" > 2 years< / option >
< option value = "3" > 3 years< / option >
< option value = "4" > 4 years< / option >
< / select >
< / div >
< span style = "padding-top: 15px" class = "text-center col-sm-1" >
2016-07-04 16:08:16 -07:00
< strong > or< / strong >
2016-05-09 17:17:00 -07:00
< / span >
2016-12-26 15:55:11 -08:00
< div class = "col-sm-3" >
< div class = "input-group" >
< input type = "text" class = "form-control"
uib-tooltip="yyyy/MM/dd"
uib-datepicker-popup="yyyy/MM/dd"
ng-model="certificate.validityStart"
is-open="popup1.opened"
datepicker-options="dateOptions"
close-text="Close"
max-date="certificate.authority.authorityCertificate.notAfter"
min-date="certificate.authority.authorityCertificate.notBefore"
alt-input-formats="altInputFormats"
placeholder="Start Date"
/>
< span class = "input-group-btn" >
2016-05-09 17:17:00 -07:00
< button type = "button" class = "btn btn-default" ng-click = "open1()" > < i
class="glyphicon glyphicon-calendar">< / i > < / button >
< / span >
2016-12-26 15:55:11 -08:00
< / div >
< / div >
< div class = "col-sm-3" >
< div class = "input-group" >
< input type = "text" class = "form-control"
uib-tooltip="yyyy/MM/dd"
uib-datepicker-popup="yyyy/MM/dd"
ng-model="certificate.validityEnd"
is-open="popup2.opened"
datepicker-options="dateOptions"
close-text="Close"
max-date="certificate.authority.authorityCertificate.notAfter"
min-date="certificate.authority.authorityCertificate.notBefore"
alt-input-formats="altInputFormats"
placeholder="End Date"
/>
< span class = "input-group-btn" >
2016-05-09 17:17:00 -07:00
< button type = "button" class = "btn btn-default" ng-click = "open2()" > < i
class="glyphicon glyphicon-calendar">< / i > < / button >
< / span >
2016-05-05 15:28:17 -07:00
< / div >
2016-12-26 15:55:11 -08:00
< / div >
< div class = "col-sm-1" >
< button uib-tooltip = "Clear Validity" ng-click = "clearDates()" class = "btn btn-default" > < i
class="glyphicon glyphicon-remove">< / i > < / button >
< / div >
< / div >
< div class = "form-group" >
< label class = "control-label col-sm-2" > Auto Rotate< / label >
< div class = "col-sm-10" >
< switch ng-model = "certificate.rotation" id = "active" name = "active" class = "green small"
uib-tooltip="If selected, new certificates will be automatically re-issued and re-deployed onto known endpoints.">< / switch >
< / div >
2015-12-28 22:00:29 -05:00
< / div >
2016-12-26 15:55:11 -08:00
< div ng-include = "'angular/certificates/certificate/replaces.tpl.html'" > < / div >
< div ng-include = "'angular/certificates/certificate/destinations.tpl.html'" > < / div >
< / div >
2015-06-22 13:47:27 -07:00
< / form >