hackatime/app/javascript/pages/OAuthApplications/New.svelte
Mahad Kalam 3f5470464a
New signed out page, new sign in page, no minimal login, fix redirect (#968)
* 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
2026-02-17 17:08:11 +00:00

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>