mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-19 22:15:14 +00:00
* New signed out page, new sign in page, no minimal login, fix redirect issue * Format + deps * Implement that fix * Readd the numbers * Remove the +s
23 lines
546 B
Svelte
23 lines
546 B
Svelte
<script module lang="ts">
|
|
export const layout = false;
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import Form from "./Form.svelte";
|
|
import type { OAuthApplicationFormProps } from "./types";
|
|
|
|
let props: OAuthApplicationFormProps = $props();
|
|
</script>
|
|
|
|
<svelte:head>
|
|
<title>{props.page_title}</title>
|
|
</svelte:head>
|
|
|
|
<div class="mx-auto max-w-4xl space-y-4">
|
|
<header>
|
|
<h1 class="text-3xl font-bold text-surface-content">{props.heading}</h1>
|
|
<p class="mt-1 text-sm text-muted">{props.subheading}</p>
|
|
</header>
|
|
|
|
<Form {...props} />
|
|
</div>
|