package admin import "gobeyhan/views/components" templ Login() { @Layout("Login") {

Sign in to your account

@components.Input(components.InputProps{ Label: "Email address", Name: "email", Type: "email", Placeholder: "admin@example.com", }) @components.Input(components.InputProps{ Label: "Password", Name: "password", Type: "password", })
@components.Button(components.ButtonProps{ Type: "submit", Label: "Sign in", })
} }