Clean, modern building blocks. Copy and paste into your apps. Built with Go and templ. Open Source. Free forever.
Registry reference: these templ ports track the current shadcn/ui Base UI blocks. The public shadcn block previews can still show legacy new-york-v4/Radix variants, so their block-level details may differ.
package login01 templ Page() { <div class="flex min-h-svh w-full items-center justify-center p-6 md:p-10"> <div class="w-full max-w-sm"> @LoginForm() </div> </div>}package login01 import ( "github.com/axadrn/shadcn-templ/v2/components/button" "github.com/axadrn/shadcn-templ/v2/components/card" "github.com/axadrn/shadcn-templ/v2/components/field" "github.com/axadrn/shadcn-templ/v2/components/input") templ LoginForm() { <div class="flex flex-col gap-6"> @card.Card() { @card.Header() { @card.Title() { Login to your account } @card.Description() { Enter your email below to login to your account } } @card.Content() { <form> @field.Group() { @field.Field() { @field.Label(field.LabelProps{For: "email"}) { Email } @input.Input(input.Props{ ID: "email", Type: "email", Placeholder: "[email protected]", Required: true, }) } @field.Field() { <div class="flex items-center"> @field.Label(field.LabelProps{For: "password"}) { Password } <a href="#" class="ml-auto inline-block text-sm underline-offset-4 hover:underline" > Forgot your password? </a> </div> @input.Input(input.Props{ID: "password", Type: "password", Required: true}) } @field.Field() { @button.Button(button.Props{Type: button.TypeSubmit}) { Login } @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { Login with Google } @field.Description(field.DescriptionProps{Class: "text-center"}) { Don't have an account? <a href="#">Sign up</a> } } } </form> } } </div>}package login02 import "github.com/axadrn/shadcn-templ/v2/components/icon" templ Page() { <div class="grid min-h-svh lg:grid-cols-2"> <div class="flex flex-col gap-4 p-6 md:p-10"> <div class="flex justify-center gap-2 md:justify-start"> <a href="#" class="flex items-center gap-2 font-medium"> <div class="flex size-6 items-center justify-center rounded-md bg-primary text-primary-foreground"> @icon.GalleryVerticalEnd(icon.Props{Class: "size-4"}) </div> Acme Inc. </a> </div> <div class="flex flex-1 items-center justify-center"> <div class="w-full max-w-xs"> @LoginForm() </div> </div> </div> <div class="relative hidden bg-muted lg:block"> <img src="/placeholder.svg" alt="Image" class="absolute inset-0 h-full w-full object-cover dark:brightness-[0.2] dark:grayscale" /> </div> </div>}package login02 import ( "github.com/axadrn/shadcn-templ/v2/components/button" "github.com/axadrn/shadcn-templ/v2/components/field" "github.com/axadrn/shadcn-templ/v2/components/input") templ LoginForm() { <form class="flex flex-col gap-6"> @field.Group() { <div class="flex flex-col items-center gap-1 text-center"> <h1 class="text-2xl font-bold">Login to your account</h1> <p class="text-sm text-balance text-muted-foreground"> Enter your email below to login to your account </p> </div> @field.Field() { @field.Label(field.LabelProps{For: "email"}) { Email } @input.Input(input.Props{ ID: "email", Type: "email", Placeholder: "[email protected]", Required: true, }) } @field.Field() { <div class="flex items-center"> @field.Label(field.LabelProps{For: "password"}) { Password } <a href="#" class="ml-auto text-sm underline-offset-4 hover:underline" > Forgot your password? </a> </div> @input.Input(input.Props{ID: "password", Type: "password", Required: true}) } @field.Field() { @button.Button(button.Props{Type: button.TypeSubmit}) { Login } } @field.Separator() { Or continue with } @field.Field() { @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M12 .297c-6.63 0-12 5.373-12 12 0 5.303 3.438 9.8 8.205 11.385.6.113.82-.258.82-.577 0-.285-.01-1.04-.015-2.04-3.338.724-4.042-1.61-4.042-1.61C4.422 18.07 3.633 17.7 3.633 17.7c-1.087-.744.084-.729.084-.729 1.205.084 1.838 1.236 1.838 1.236 1.07 1.835 2.809 1.305 3.495.998.108-.776.417-1.305.76-1.605-2.665-.3-5.466-1.332-5.466-5.93 0-1.31.465-2.38 1.235-3.22-.135-.303-.54-1.523.105-3.176 0 0 1.005-.322 3.3 1.23.96-.267 1.98-.399 3-.405 1.02.006 2.04.138 3 .405 2.28-1.552 3.285-1.23 3.285-1.23.645 1.653.24 2.873.12 3.176.765.84 1.23 1.91 1.23 3.22 0 4.61-2.805 5.625-5.475 5.92.42.36.81 1.096.81 2.22 0 1.606-.015 2.896-.015 3.286 0 .315.21.69.825.57C20.565 22.092 24 17.592 24 12.297c0-6.627-5.373-12-12-12" fill="currentColor" ></path> </svg> Login with GitHub } @field.Description(field.DescriptionProps{Class: "text-center"}) { Don't have an account? <a href="#" class="underline underline-offset-4"> Sign up </a> } } } </form>}package login03 import "github.com/axadrn/shadcn-templ/v2/components/icon" templ Page() { <div class="flex min-h-svh flex-col items-center justify-center gap-6 bg-muted p-6 md:p-10"> <div class="flex w-full max-w-sm flex-col gap-6"> <a href="#" class="flex items-center gap-2 self-center font-medium"> <div class="flex size-6 items-center justify-center rounded-md bg-primary text-primary-foreground"> @icon.GalleryVerticalEnd(icon.Props{Class: "size-4"}) </div> Acme Inc. </a> @LoginForm() </div> </div>}package login03 import ( "github.com/axadrn/shadcn-templ/v2/components/button" "github.com/axadrn/shadcn-templ/v2/components/card" "github.com/axadrn/shadcn-templ/v2/components/field" "github.com/axadrn/shadcn-templ/v2/components/input") templ LoginForm() { <div class="flex flex-col gap-6"> @card.Card() { @card.Header(card.HeaderProps{Class: "text-center"}) { @card.Title(card.TitleProps{Class: "text-xl"}) { Welcome back } @card.Description() { Login with your Apple or Google account } } @card.Content() { <form> @field.Group() { @field.Field() { @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701" fill="currentColor" ></path> </svg> Login with Apple } @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" fill="currentColor" ></path> </svg> Login with Google } } @field.Separator(field.SeparatorProps{Class: "*:data-[slot=field-separator-content]:bg-card"}) { Or continue with } @field.Field() { @field.Label(field.LabelProps{For: "email"}) { Email } @input.Input(input.Props{ ID: "email", Type: "email", Placeholder: "[email protected]", Required: true, }) } @field.Field() { <div class="flex items-center"> @field.Label(field.LabelProps{For: "password"}) { Password } <a href="#" class="ml-auto text-sm underline-offset-4 hover:underline" > Forgot your password? </a> </div> @input.Input(input.Props{ID: "password", Type: "password", Required: true}) } @field.Field() { @button.Button(button.Props{Type: button.TypeSubmit}) { Login } @field.Description(field.DescriptionProps{Class: "text-center"}) { Don't have an account? <a href="#">Sign up</a> } } } </form> } } @field.Description(field.DescriptionProps{Class: "px-6 text-center"}) { By clicking continue, you agree to our <a href="#">Terms of Service</a> and <a href="#">Privacy Policy</a>. } </div>}package login04 templ Page() { <div class="flex min-h-svh flex-col items-center justify-center bg-muted p-6 md:p-10"> <div class="w-full max-w-sm md:max-w-4xl"> @LoginForm() </div> </div>}package login04 import ( "github.com/axadrn/shadcn-templ/v2/components/button" "github.com/axadrn/shadcn-templ/v2/components/card" "github.com/axadrn/shadcn-templ/v2/components/field" "github.com/axadrn/shadcn-templ/v2/components/input") templ LoginForm() { <div class="flex flex-col gap-6"> @card.Card(card.Props{Class: "overflow-hidden p-0"}) { @card.Content(card.ContentProps{Class: "grid p-0 md:grid-cols-2"}) { <form class="p-6 md:p-8"> @field.Group() { <div class="flex flex-col items-center gap-2 text-center"> <h1 class="text-2xl font-bold">Welcome back</h1> <p class="text-balance text-muted-foreground"> Login to your Acme Inc account </p> </div> @field.Field() { @field.Label(field.LabelProps{For: "email"}) { Email } @input.Input(input.Props{ ID: "email", Type: "email", Placeholder: "[email protected]", Required: true, }) } @field.Field() { <div class="flex items-center"> @field.Label(field.LabelProps{For: "password"}) { Password } <a href="#" class="ml-auto text-sm underline-offset-2 hover:underline" > Forgot your password? </a> </div> @input.Input(input.Props{ID: "password", Type: "password", Required: true}) } @field.Field() { @button.Button(button.Props{Type: button.TypeSubmit}) { Login } } @field.Separator(field.SeparatorProps{Class: "*:data-[slot=field-separator-content]:bg-card"}) { Or continue with } @field.Field(field.Props{Class: "grid grid-cols-3 gap-4"}) { @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701" fill="currentColor" ></path> </svg> <span class="sr-only">Login with Apple</span> } @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" fill="currentColor" ></path> </svg> <span class="sr-only">Login with Google</span> } @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M6.915 4.03c-1.968 0-3.683 1.28-4.871 3.113C.704 9.208 0 11.883 0 14.449c0 .706.07 1.369.21 1.973a6.624 6.624 0 0 0 .265.86 5.297 5.297 0 0 0 .371.761c.696 1.159 1.818 1.927 3.593 1.927 1.497 0 2.633-.671 3.965-2.444.76-1.012 1.144-1.626 2.663-4.32l.756-1.339.186-.325c.061.1.121.196.183.3l2.152 3.595c.724 1.21 1.665 2.556 2.47 3.314 1.046.987 1.992 1.22 3.06 1.22 1.075 0 1.876-.355 2.455-.843a3.743 3.743 0 0 0 .81-.973c.542-.939.861-2.127.861-3.745 0-2.72-.681-5.357-2.084-7.45-1.282-1.912-2.957-2.93-4.716-2.93-1.047 0-2.088.467-3.053 1.308-.652.57-1.257 1.29-1.82 2.05-.69-.875-1.335-1.547-1.958-2.056-1.182-.966-2.315-1.303-3.454-1.303zm10.16 2.053c1.147 0 2.188.758 2.992 1.999 1.132 1.748 1.647 4.195 1.647 6.4 0 1.548-.368 2.9-1.839 2.9-.58 0-1.027-.23-1.664-1.004-.496-.601-1.343-1.878-2.832-4.358l-.617-1.028a44.908 44.908 0 0 0-1.255-1.98c.07-.109.141-.224.211-.327 1.12-1.667 2.118-2.602 3.358-2.602zm-10.201.553c1.265 0 2.058.791 2.675 1.446.307.327.737.871 1.234 1.579l-1.02 1.566c-.757 1.163-1.882 3.017-2.837 4.338-1.191 1.649-1.81 1.817-2.486 1.817-.524 0-1.038-.237-1.383-.794-.263-.426-.464-1.13-.464-2.046 0-2.221.63-4.535 1.66-6.088.454-.687.964-1.226 1.533-1.533a2.264 2.264 0 0 1 1.088-.285z" fill="currentColor" ></path> </svg> <span class="sr-only">Login with Meta</span> } } @field.Description(field.DescriptionProps{Class: "text-center"}) { Don't have an account? <a href="#">Sign up</a> } } </form> <div class="relative hidden bg-muted md:block"> <img src="/placeholder.svg" alt="Image" class="absolute inset-0 h-full w-full object-cover dark:brightness-[0.2] dark:grayscale" /> </div> } } @field.Description(field.DescriptionProps{Class: "px-6 text-center"}) { By clicking continue, you agree to our <a href="#">Terms of Service</a> and <a href="#">Privacy Policy</a>. } </div>}package login05 templ Page() { <div class="flex min-h-svh flex-col items-center justify-center gap-6 bg-background p-6 md:p-10"> <div class="w-full max-w-sm"> @LoginForm() </div> </div>}package login05 import ( "github.com/axadrn/shadcn-templ/v2/components/button" "github.com/axadrn/shadcn-templ/v2/components/field" "github.com/axadrn/shadcn-templ/v2/components/icon" "github.com/axadrn/shadcn-templ/v2/components/input") templ LoginForm() { <div class="flex flex-col gap-6"> <form> @field.Group() { <div class="flex flex-col items-center gap-2 text-center"> <a href="#" class="flex flex-col items-center gap-2 font-medium" > <div class="flex size-8 items-center justify-center rounded-md"> @icon.GalleryVerticalEnd(icon.Props{Class: "size-6"}) </div> <span class="sr-only">Acme Inc.</span> </a> <h1 class="text-xl font-bold">Welcome to Acme Inc.</h1> @field.Description() { Don't have an account? <a href="#">Sign up</a> } </div> @field.Field() { @field.Label(field.LabelProps{For: "email"}) { Email } @input.Input(input.Props{ ID: "email", Type: "email", Placeholder: "[email protected]", Required: true, }) } @field.Field() { @button.Button(button.Props{Type: button.TypeSubmit}) { Login } } @field.Separator() { Or } @field.Field(field.Props{Class: "grid gap-4 sm:grid-cols-2"}) { @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M12.152 6.896c-.948 0-2.415-1.078-3.96-1.04-2.04.027-3.91 1.183-4.961 3.014-2.117 3.675-.546 9.103 1.519 12.09 1.013 1.454 2.208 3.09 3.792 3.039 1.52-.065 2.09-.987 3.935-.987 1.831 0 2.35.987 3.96.948 1.637-.026 2.676-1.48 3.676-2.948 1.156-1.688 1.636-3.325 1.662-3.415-.039-.013-3.182-1.221-3.22-4.857-.026-3.04 2.48-4.494 2.597-4.559-1.429-2.09-3.623-2.324-4.39-2.376-2-.156-3.675 1.09-4.61 1.09zM15.53 3.83c.843-1.012 1.4-2.427 1.245-3.83-1.207.052-2.662.805-3.532 1.818-.78.896-1.454 2.338-1.273 3.714 1.338.104 2.715-.688 3.559-1.701" fill="currentColor" ></path> </svg> Continue with Apple } @button.Button(button.Props{Variant: button.VariantOutline, Type: button.TypeButton}) { <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"> <path d="M12.48 10.92v3.28h7.84c-.24 1.84-.853 3.187-1.787 4.133-1.147 1.147-2.933 2.4-6.053 2.4-4.827 0-8.6-3.893-8.6-8.72s3.773-8.72 8.6-8.72c2.6 0 4.507 1.027 5.907 2.347l2.307-2.307C18.747 1.44 16.133 0 12.48 0 5.867 0 .307 5.387.307 12s5.56 12 12.173 12c3.573 0 6.267-1.173 8.373-3.36 2.16-2.16 2.84-5.213 2.84-7.667 0-.76-.053-1.467-.173-2.053H12.48z" fill="currentColor" ></path> </svg> Continue with Google } } } </form> @field.Description(field.DescriptionProps{Class: "px-6 text-center"}) { By clicking continue, you agree to our <a href="#">Terms of Service</a> and <a href="#">Privacy Policy</a>. } </div>}