A word or warning. This is super rough rn. I'm publishing to allow for community involvement and to get feedback. That said... it's totally usable.
Currently email & password is the only supported means of logging in.
<script>
import { LoginWindow } from 'meteor/levelup:svelte-accounts-ui'
</script>
<LoginWindow />
<script>
import { Login, Signup, Logout } from 'meteor/levelup:svelte-accounts-ui'
</script>
<Signup heading="Create User" />
<Login />
<Logout />
Easy UI for Logins
| Prop | Type | Default | Description |
|---|---|---|---|
| signupHeading | string | "Sign Up" | |
| loginHeading | string | "Login" |
Login Form
| Prop | Type | Default | Description |
|---|---|---|---|
| heading | string | "Login" |
Sign Up Form
| Prop | Type | Default | Description |
|---|---|---|---|
| signupHeading | string | "Sign Up" |
A button that logs the user out
| Prop | Type | Default | Description |
|---|---|---|---|
| text | string | "Logout" |