{% 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 only way to remove access to a shared secret key is to generate a new secret and update your build manifests.
{{csrf_token()}}
{{valid.summary("username")}}
{{valid.summary()}} Cancel {{icon('caret-right')}}
{% endblock %}