ikurotime / gitgud

public
main / internal/interface/web/templates/login_templ.go
5.3 KB · Go Raw
  1// Code generated by templ - DO NOT EDIT.
  2
  3// templ: version: v0.3.865
  4package templates
  5
  6//lint:file-ignore SA4006 This context is only used if a nested component is present.
  7
  8import "github.com/a-h/templ"
  9import templruntime "github.com/a-h/templ/runtime"
 10
 11import "gitgud/internal/domain"
 12
 13func Login(user *domain.User, username, errMsg string) templ.Component {
 14	return templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
 15		templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
 16		if templ_7745c5c3_CtxErr := ctx.Err(); templ_7745c5c3_CtxErr != nil {
 17			return templ_7745c5c3_CtxErr
 18		}
 19		templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
 20		if !templ_7745c5c3_IsBuffer {
 21			defer func() {
 22				templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
 23				if templ_7745c5c3_Err == nil {
 24					templ_7745c5c3_Err = templ_7745c5c3_BufErr
 25				}
 26			}()
 27		}
 28		ctx = templ.InitializeContext(ctx)
 29		templ_7745c5c3_Var1 := templ.GetChildren(ctx)
 30		if templ_7745c5c3_Var1 == nil {
 31			templ_7745c5c3_Var1 = templ.NopComponent
 32		}
 33		ctx = templ.ClearChildren(ctx)
 34		templ_7745c5c3_Var2 := templruntime.GeneratedTemplate(func(templ_7745c5c3_Input templruntime.GeneratedComponentInput) (templ_7745c5c3_Err error) {
 35			templ_7745c5c3_W, ctx := templ_7745c5c3_Input.Writer, templ_7745c5c3_Input.Context
 36			templ_7745c5c3_Buffer, templ_7745c5c3_IsBuffer := templruntime.GetBuffer(templ_7745c5c3_W)
 37			if !templ_7745c5c3_IsBuffer {
 38				defer func() {
 39					templ_7745c5c3_BufErr := templruntime.ReleaseBuffer(templ_7745c5c3_Buffer)
 40					if templ_7745c5c3_Err == nil {
 41						templ_7745c5c3_Err = templ_7745c5c3_BufErr
 42					}
 43				}()
 44			}
 45			ctx = templ.InitializeContext(ctx)
 46			templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 1, "<div class=\"mx-auto max-w-sm py-10\"><div class=\"mb-6 flex flex-col items-center gap-3\"><span class=\"text-accent\">")
 47			if templ_7745c5c3_Err != nil {
 48				return templ_7745c5c3_Err
 49			}
 50			templ_7745c5c3_Err = gitLogo("size-9").Render(ctx, templ_7745c5c3_Buffer)
 51			if templ_7745c5c3_Err != nil {
 52				return templ_7745c5c3_Err
 53			}
 54			templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 2, "</span><h1 class=\"text-lg font-semibold text-ink\">Sign in to <span class=\"font-mono text-accent\">gitgud</span></h1></div><div class=\"card p-6\">")
 55			if templ_7745c5c3_Err != nil {
 56				return templ_7745c5c3_Err
 57			}
 58			if errMsg != "" {
 59				templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 3, "<div class=\"mb-4 rounded-md border border-closed/30 bg-closed/10 px-3 py-2 text-sm text-closed\">")
 60				if templ_7745c5c3_Err != nil {
 61					return templ_7745c5c3_Err
 62				}
 63				var templ_7745c5c3_Var3 string
 64				templ_7745c5c3_Var3, templ_7745c5c3_Err = templ.JoinStringErrs(errMsg)
 65				if templ_7745c5c3_Err != nil {
 66					return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/interface/web/templates/login.templ`, Line: 14, Col: 109}
 67				}
 68				_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var3))
 69				if templ_7745c5c3_Err != nil {
 70					return templ_7745c5c3_Err
 71				}
 72				templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 4, "</div>")
 73				if templ_7745c5c3_Err != nil {
 74					return templ_7745c5c3_Err
 75				}
 76			}
 77			templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 5, "<form method=\"post\" action=\"/login\" class=\"flex flex-col gap-4\">")
 78			if templ_7745c5c3_Err != nil {
 79				return templ_7745c5c3_Err
 80			}
 81			templ_7745c5c3_Err = csrfField().Render(ctx, templ_7745c5c3_Buffer)
 82			if templ_7745c5c3_Err != nil {
 83				return templ_7745c5c3_Err
 84			}
 85			templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 6, "<label class=\"flex flex-col gap-1.5\"><span class=\"text-xs font-medium text-muted\">Username</span> <input class=\"input\" type=\"text\" name=\"username\" value=\"")
 86			if templ_7745c5c3_Err != nil {
 87				return templ_7745c5c3_Err
 88			}
 89			var templ_7745c5c3_Var4 string
 90			templ_7745c5c3_Var4, templ_7745c5c3_Err = templ.JoinStringErrs(username)
 91			if templ_7745c5c3_Err != nil {
 92				return templ.Error{Err: templ_7745c5c3_Err, FileName: `internal/interface/web/templates/login.templ`, Line: 20, Col: 71}
 93			}
 94			_, templ_7745c5c3_Err = templ_7745c5c3_Buffer.WriteString(templ.EscapeString(templ_7745c5c3_Var4))
 95			if templ_7745c5c3_Err != nil {
 96				return templ_7745c5c3_Err
 97			}
 98			templ_7745c5c3_Err = templruntime.WriteString(templ_7745c5c3_Buffer, 7, "\" autofocus></label> <label class=\"flex flex-col gap-1.5\"><span class=\"text-xs font-medium text-muted\">Password</span> <input class=\"input\" type=\"password\" name=\"password\"></label> <button class=\"btn btn-primary mt-1 justify-center\" type=\"submit\">Sign in</button></form></div><p class=\"mt-4 text-center text-sm text-muted\">No account? <a class=\"text-accent hover:underline\" href=\"/register\">Register</a></p></div>")
 99			if templ_7745c5c3_Err != nil {
100				return templ_7745c5c3_Err
101			}
102			return nil
103		})
104		templ_7745c5c3_Err = Layout("Sign in · gitgud", user).Render(templ.WithChildren(ctx, templ_7745c5c3_Var2), templ_7745c5c3_Buffer)
105		if templ_7745c5c3_Err != nil {
106			return templ_7745c5c3_Err
107		}
108		return nil
109	})
110}
111
112var _ = templruntime.GeneratedTemplate