mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
17 lines
371 B
Svelte
17 lines
371 B
Svelte
<script lang="ts">
|
|
import {
|
|
FluidForm,
|
|
TextInput,
|
|
PasswordInput,
|
|
} from "carbon-components-svelte";
|
|
</script>
|
|
|
|
<FluidForm action="" method="get">
|
|
<TextInput labelText="User name" placeholder="Enter user name..." required />
|
|
<PasswordInput
|
|
required
|
|
type="password"
|
|
labelText="Password"
|
|
placeholder="Enter password..."
|
|
/>
|
|
</FluidForm>
|