@use crate::templates::layout; @use hyaenidae_toolkit::{templates::{button_group, card, card_body, text_input}, Button, Card, TextInput}; @(handle_input: &TextInput) @:layout("Create Profile", "Create a new profile on Hyaenidae", {}, { @:card(&Card::full_width(), { 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")]) })
}) })