package register import "github.com/onsonr/sonr/pkg/common/styles/layout" templ formCreateProfile(action string, method string, data CreateProfileData) {
@layout.Rows() { } @layout.Spacer()
@layout.Spacer()
Cancel Next
} templ formRegisterPasskey(action, method string, data RegisterPasskeyData) {
@sonrProfile(data.Address, data.Name, data.Handle, data.CreationBlock)
@cryptoWalletOption("SNR", "Sonr", true) @cryptoWalletOption("BTC", "Bitcoin", true) @cryptoWalletOption("ETH", "Ethereum", true) @cryptoWalletOption("SOL", "Solana", false) @cryptoWalletOption("LTC", "Litecoin", false) @cryptoWalletOption("DOGE", "Dogecoin", false) @cryptoWalletOption("XRP", "Ripple", false) @cryptoWalletOption("OSMO", "Osmosis", false) @cryptoWalletOption("ATOM", "Cosmos", false) @cryptoWalletOption("STARZ", "Stargaze", false) @cryptoWalletOption("AKT", "Akash", false) @cryptoWalletOption("EVMOS", "Evmos", false) @cryptoWalletOption("FIL", "Filecoin", false) @cryptoWalletOption("AXL", "Axelar", false)
@passkeyDropzone(data.Address, data.Handle, data.Challenge) Cancel
}