import { BaseContext } from "koa"; import html from "../../../html"; import navbar from "../../common/navbar"; import input from "../../common/ui/input"; export async function accountCreationDetailsForm( ctx: BaseContext, { values, errors, }: { values: { token: string; email: string; username?: string }; errors?: { email?: string; username?: string; password?: string }; } ) { errors = errors || {}; return html( ctx, /* HTML */ ` ${navbar(ctx)}