1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00
Jeremy Stretch bddd9b6f39 Fixed typo
2016-06-24 10:53:32 -04:00

26 lines
1.2 KiB
HTML

<div class="modal fade" id="privkey_modal" tabindex="-1" role="dialog">
<div class="modal-dialog modal-md" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<h4 class="modal-title" id="privkey_modal_title">
<span class="glyphicon glyphicon-lock" aria-hidden="true"></span>
Enter your private RSA key
</h4>
</div>
<div class="modal-body">
<p>
Your private RSA key is needed to complete this action. Once you've provided your key, it will
remain cached locally until you close this browser tab.
</p>
<div class="form-group">
<textarea class="form-control" id="user_privkey" style="height: 300px;"></textarea>
</div>
<div class="form-group text-right">
<button id="submit_privkey" class="btn btn-primary unlock-secret" data-dismiss="modal">Submit RSA Key</button>
</div>
</div>
</div>
</div>
</div>