mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-05 05:02:06 +00:00
28 lines
811 B
Svelte
28 lines
811 B
Svelte
<script lang="ts">
|
|
export let database: any;
|
|
import { status } from '$lib/store';
|
|
import CopyPasswordField from '$lib/components/CopyPasswordField.svelte';
|
|
import Explainer from '$lib/components/Explainer.svelte';
|
|
</script>
|
|
|
|
<div class="flex space-x-1 py-5 font-bold">
|
|
<h1 class="title">Redis</h1>
|
|
</div>
|
|
<div class="space-y-2 lg:px-10 px-2">
|
|
<div class="grid grid-cols-2 items-center">
|
|
<label for="dbUserPassword"
|
|
>Password
|
|
<Explainer explanation="Could be changed while the database is running." /></label
|
|
>
|
|
<CopyPasswordField
|
|
disabled={!$status.database.isRunning}
|
|
readonly={!$status.database.isRunning}
|
|
placeholder="Generated automatically after start"
|
|
isPasswordField
|
|
id="dbUserPassword"
|
|
name="dbUserPassword"
|
|
bind:value={database.dbUserPassword}
|
|
/>
|
|
</div>
|
|
</div>
|