mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-04 18:31:41 +00:00
refactor: Refactor registration forms to use UI components
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
package ui
|
||||
|
||||
type InputHandleState string
|
||||
|
||||
const (
|
||||
InputHandleStateInitial InputHandleState = "inital"
|
||||
InputHandleStateValid InputHandleState = "valid"
|
||||
InputHandleStateInvalid InputHandleState = "invalid"
|
||||
)
|
||||
|
||||
func (s InputHandleState) string() string {
|
||||
return string(s)
|
||||
}
|
||||
|
||||
templ InputHandle(handle string) {
|
||||
<sl-input name="handle" placeholder="digitalgold" type="text" label="Handle" minlength="4" maxlength="12" required>
|
||||
<div slot="prefix">
|
||||
<sl-icon name="at-sign" library="sonr"></sl-icon>
|
||||
</div>
|
||||
</sl-input>
|
||||
}
|
||||
Reference in New Issue
Block a user