2013-11-23 01:14:44 +00:00
<!-- Modal message dialog -->
< div class = "modal fade" id = "dockerauthmodal" >
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
< button type = "button" class = "close" data-dismiss = "modal" aria-hidden = "true" > × < / button >
< h4 class = "modal-title" >
< span ng-transclude > < / span >
< / h4 >
< / div >
< div class = "modal-body token-dialog-body" >
< div class = "alert alert-info" > The docker < u > username< / u > is < b > {{ username }}< / b > and the < u > password< / u > is the token below. You may use any value for email.< / div >
2014-08-25 21:19:23 +00:00
< div class = "well well-sm" ng-show = "regenerating" >
Regenerating Token...
< i class = "fa fa-refresh fa-spin" > < / i >
< / div >
2014-11-24 21:07:38 +00:00
2014-08-25 21:19:23 +00:00
< div class = "well well-sm" ng-show = "!regenerating" >
2013-11-23 01:14:44 +00:00
< input id = "token-view" class = "token-view" type = "text" value = "{{ token }}" onClick = "this.select();" readonly >
2014-08-25 21:19:23 +00:00
< i class = "fa fa-refresh" ng-show = "supportsRegenerate" ng-click = "askRegenerate()"
data-title="Regenerate Token"
data-placement="left"
bs-tooltip>< / i >
2013-11-23 01:14:44 +00:00
< / div >
< / div >
2014-08-25 21:19:23 +00:00
< div class = "modal-footer" ng-show = "regenerating" >
< button type = "button" class = "btn btn-default" data-dismiss = "modal" > Close< / button >
< / div >
< div class = "modal-footer" ng-show = "!regenerating" >
2013-11-23 01:14:44 +00:00
< span class = "download-cfg" ng-show = "isDownloadSupported()" >
< i class = "fa fa-download" > < / i >
< a href = "javascript:void(0)" ng-click = "downloadCfg(shownRobot)" > Download .dockercfg file< / a >
< / span >
2015-02-24 21:51:03 +00:00
< span class = "download-cfg not-supported" ng-show = "!isDownloadSupported()" >
.dockercfg download not supported in this browser
< / span >
2014-08-22 19:24:56 +00:00
< div class = "clipboard-copied-message" style = "display: none" >
2014-08-22 20:54:53 +00:00
Copied
2013-11-23 01:14:44 +00:00
< / div >
2014-08-22 20:54:53 +00:00
< input type = "hidden" name = "command-data" id = "command-data" value = "{{ command }}" >
< button id = "copyClipboard" type = "button" class = "btn btn-primary" data-clipboard-target = "command-data" > Copy Login Command< / button >
2013-11-23 01:14:44 +00:00
< button type = "button" class = "btn btn-default" data-dismiss = "modal" > Close< / button >
< / div >
< / div > <!-- /.modal - content -->
< / div > <!-- /.modal - dialog -->
< / div > <!-- /.modal -->