1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
<div class="modal-header">
<h4 class="modal-title" translate="yes">Authentication failed</h4>
</div>
<div class="modal-body">
{{#supported}}
<p translate="yes">Unable to log in to {{#strong}}{{host}}{{/strong}}. To connect to this host you will need to enable one of the following authentication methods in the sshd config on {{#strong}}{{host}}{{/strong}}:</p>
<ul>
{{#password}}<li translate="yes">Password</li>{{/password}}
{{#public-key}}<li translate="yes">Public key</li>{{/public-key}}
{{#gssapi-mic}}<li translate="yes">Kerberos based SSO</li>{{/gssapi-mic}}
</ul>
{{/supported}}
{{^supported}}
<p translate="yes">Unable to log in to {{#strong}}{{host}}{{/strong}}. For more authentication options and troubleshooting support please upgrade cockpit-ws to a newer version.</p>
{{/supported}}
</div>
<div class="modal-footer">
<button class="pf-c-button pf-m-primary" data-dismiss="modal" translate="yes">Close</button>
</div>
|