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

This is where you can talk a bit about yourself. the Display Name is the name that will be featured on your profile page, and the Description will appear underneath it.

@:text_input(display_name_input) @:text_input(description_input) }) @:card_body({ @:button_group(&[ &Button::primary("Next").dark(true), Button::primary_outline("Skip").href("/profiles/create/icon").dark(true), Button::primary_outline("Skip All").href("/profiles/create/done").dark(true), ]) })
}) @:card(&Card::full_width().classes(&["account-page"]).dark(true), { @:card_title({ Preview }) @:view("", profile) }) })