mirror of
https://github.com/anomalyco/opencode.git
synced 2026-05-01 22:10:23 +00:00
ignore: fix
This commit is contained in:
parent
b6e80e72f6
commit
bc9522d5d8
1 changed files with 4 additions and 2 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
import { action, useSubmission } from "@solidjs/router"
|
import { action, useSubmission } from "@solidjs/router"
|
||||||
import dock from "../asset/lander/dock.png"
|
import dock from "../asset/lander/dock.png"
|
||||||
import { Resource } from "sst"
|
import { Resource } from "@opencode/console-resource"
|
||||||
import { Show } from "solid-js"
|
import { Show } from "solid-js"
|
||||||
|
|
||||||
const emailSignup = action(async (formData: FormData) => {
|
const emailSignup = action(async (formData: FormData) => {
|
||||||
|
|
@ -39,7 +39,9 @@ export function EmailSignup() {
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
<Show when={submission.result}>
|
<Show when={submission.result}>
|
||||||
<div style="color: #03B000; margin-top: 24px;">Almost done, check your inbox and confirm your email address</div>
|
<div style="color: #03B000; margin-top: 24px;">
|
||||||
|
Almost done, check your inbox and confirm your email address
|
||||||
|
</div>
|
||||||
</Show>
|
</Show>
|
||||||
<Show when={submission.error}>
|
<Show when={submission.error}>
|
||||||
<div style="color: #FF408F; margin-top: 24px;">{submission.error}</div>
|
<div style="color: #FF408F; margin-top: 24px;">{submission.error}</div>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue