@use crate::templates::layouts::home; @use hyaenidae_accounts::LogoutState; @use hyaenidae_toolkit::{templates::{button_group, card, card_body, card_title, text_input, statics::button_js}, Button, Card, TextInput}; @(handle_input: &TextInput, logout: LogoutState) @:home("Create Profile", "Create a new profile on Hyaenidae", &Some(logout), { }, { @:card(&Card::full_width().classes(&["account-page"]), {
@:card_title({ Create a Handle }) @:card_body({

A handle is how people on Hyaenidae will find your account. You can make this the same as your username, but it isn't required.

@:text_input(handle_input) }) @:card_body({ @:button_group(&[&Button::primary("Next")]) })
}) })