This repository has been archived on 2020-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
quay/static/directives/ssh-key-dialog.html
2015-04-14 14:11:02 -04:00

24 lines
1.1 KiB
HTML

<!-- Modal message dialog -->
<div class="modal fade" id="sshkeymodal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">
Public SSH Key
</h4>
</div>
<div class="modal-body">
<div class="alert alert-info">
<p>In order for our builders to clone your repository, you must give the following public key read access to the git repository.</p>
<!-- TODO(jzelinskie): link to a specific article in the docs -->
<p>More information on using a custom triggers can be found <a href="http://docs.quay.io">in the docs</a>.</p>
</div>
<div class="copy-box" value="trigger.config.public_key"></div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Done</button>
</div>
</div> <!-- /.modal-content -->
</div> <!-- /.modal-dialog -->
</div> <!-- /.modal -->