24 lines
557 B
Vue
24 lines
557 B
Vue
<template>
|
|
<div>
|
|
<div class="my-2">
|
|
<span class="text-base">
|
|
Add this SSH Key to
|
|
<span class="font-mono text-blue-500">~/.ssh/authorized_keys</span> file
|
|
of the Server you are adding</span
|
|
>
|
|
</div>
|
|
<ClickToCopyField :textContent="ssh_key" />
|
|
<div class="my-2 grid place-items-center"></div>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import ClickToCopyField from '@/components/ClickToCopyField.vue';
|
|
export default {
|
|
name: 'SelfHostedServerVerify',
|
|
props: ['ssh_key'],
|
|
components: {
|
|
ClickToCopyField
|
|
}
|
|
};
|
|
</script>
|