improving identity and access responsiveness
This commit is contained in:
parent
6ff080c36b
commit
008d090093
@ -108,10 +108,7 @@
|
|||||||
|
|
||||||
<div class="flex space-x-1 p-6 font-bold">
|
<div class="flex space-x-1 p-6 font-bold">
|
||||||
<div class="mr-4 text-2xl tracking-tight">Identity and Access Management</div>
|
<div class="mr-4 text-2xl tracking-tight">Identity and Access Management</div>
|
||||||
<button
|
<button on:click={newTeam} class="btn btn-square btn-sm bg-iam">
|
||||||
on:click={newTeam}
|
|
||||||
class="btn btn-square btn-sm bg-iam"
|
|
||||||
>
|
|
||||||
<svg
|
<svg
|
||||||
class="h-6 w-6"
|
class="h-6 w-6"
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
@ -170,14 +167,11 @@
|
|||||||
|
|
||||||
<tbody>
|
<tbody>
|
||||||
{#each accounts as account}
|
{#each accounts as account}
|
||||||
<tr>
|
<tr class="grid items-center justify-center gap-2 lg:grid-flow-col">
|
||||||
<td class="px-2">{account.email}</td>
|
<td class="px-2">{account.email}</td>
|
||||||
<td class="flex space-x-2">
|
<td class="flex space-x-2">
|
||||||
<form on:submit|preventDefault={() => resetPassword(account.id)}>
|
<form on:submit|preventDefault={() => resetPassword(account.id)}>
|
||||||
<button
|
<button class="my-4 btn btn-sm bg-iam">Reset Password</button>
|
||||||
class="my-4 btn btn-sm bg-iam"
|
|
||||||
>Reset Password</button
|
|
||||||
>
|
|
||||||
</form>
|
</form>
|
||||||
<form on:submit|preventDefault={() => deleteUser(account.id)}>
|
<form on:submit|preventDefault={() => deleteUser(account.id)}>
|
||||||
<button
|
<button
|
||||||
|
Loading…
x
Reference in New Issue
Block a user