{#if shouldShowCreateUserForm} (shouldShowCreateUserForm = false)} onClose={() => (shouldShowCreateUserForm = false)} /> {/if} {#if shouldShowEditUserForm} (shouldShowEditUserForm = false)} /> {/if} {#if shouldShowDeleteConfirmDialog} (shouldShowDeleteConfirmDialog = false)} /> {/if} {#if shouldShowRestoreDialog} (shouldShowRestoreDialog = false)} /> {/if} {#if shouldShowPasswordResetSuccess} (shouldShowPasswordResetSuccess = false)} onCancel={() => (shouldShowPasswordResetSuccess = false)} hideCancelButton={true} confirmColor="green" >

The user's password has been reset:

{newPassword} copyToClipboard(newPassword)} title={$t('copy_password')}>

Please provide the temporary password to the user and inform them they will need to change the password at their next login.

{/if} {#if allUsers} {#each allUsers as immichUser, index} {/each} {/if}
{$t('email')} {$t('action')}
{immichUser.email} {#if !immichUser.deletedAt} editUserHandler(immichUser)} /> {#if immichUser.id !== $user.id} deleteUserHandler(immichUser)} /> {/if} {/if} {#if immichUser.deletedAt && immichUser.status === UserStatus.Deleted} restoreUserHandler(immichUser)} /> {/if}