initial commit
Some checks failed
CodeQL / Analyze (push) Failing after 1m32s

This commit is contained in:
Ludwig Lehnert
2026-01-11 11:08:48 +01:00
commit 0efd3d954b
58 changed files with 19390 additions and 0 deletions

25
dev/routes/auth/login.tsx Normal file
View File

@@ -0,0 +1,25 @@
import type { Component } from 'solid-js';
import { SSButton, SSCallout, SSForm, SSHeader, SSSurface } from 'src';
import { IconSpark } from '../../demo/content';
const LoginPage: Component = () => (
<div class="demo_page">
<SSHeader title="Sign in" subtitle="Access the demo workspace." />
<SSSurface class="demo_surface">
<SSCallout color="blue" icon={<IconSpark />}>
Use any email and password to explore the UI kit.
</SSCallout>
<SSForm onsubmit={() => {}}>
<SSForm.Input label="Email" name="email" type="email" required />
<SSForm.Input label="Password" name="password" type="password" required />
<SSForm.Checkbox label="Remember me" name="remember" />
<div class="demo_inline">
<SSButton>Sign in</SSButton>
<SSButton class="secondary">Request access</SSButton>
</div>
</SSForm>
</SSSurface>
</div>
);
export default LoginPage;