feat: add CNAME for onsonr.dev domain

This commit is contained in:
Prad Nukala 2024-12-08 14:52:40 -05:00
parent 889186ec3e
commit c64c506c52
2 changed files with 8 additions and 2 deletions

1
docs/CNAME Normal file
View File

@ -0,0 +1 @@
onsonr.dev

View File

@ -32,10 +32,15 @@ templ Form(action string, method string, submit templ.Component, progress string
</form>
}
templ IsHumanInput(target string, first string, last string) {
@layout.Rows() {
}
}
templ NameInput() {
@layout.Rows() {
<sl-input name="first_name" placeholder="Steve" type="text" label="First Name" required autofocus></sl-input>
<sl-input name="last_name" placeholder="J" maxlength="1" type="text" label="Last Initial"></sl-input>
<sl-input name="first_name" placeholder="Steve" type="text" label="First Name" required autofocus autofill></sl-input>
<sl-input name="last_name" placeholder="J" maxlength="1" type="text" label="Last Initial" autofill></sl-input>
}
}