{% extends "layout.html" %} {% block content %}

Share "{{ secret.name or secret.uuid }}" with another user

{% if secret.name %}
UUID
{{ secret.uuid }}
{% endif %}
Type
{{ secret.secret_type.pretty_name }}
Created
{{ secret.created | date }}
Last used
{{ secret.updated | date }}
{% if secret.secret_type.value == "plaintext_file" %}
File
{{ secret.path }} ({{ '%03o' % secret.mode }} mode)
{% endif %}
{{icon('exclamation-triangle')}} This action cannot be undone! The secret will be copied to the target user's account and cannot be unshared. The target user will be able to read and use the secret without any limitations. If this is done in error, you must revoke the rights associated with the secret and provision a new secret (e.g. by generating a new SSH key and revoking the old one).
{{csrf_token()}}
{{valid.summary("username")}}
{{valid.summary()}} Cancel {{icon('caret-right')}}
{% endblock %}