// Code generated by qtc from "home.qtpl". DO NOT EDIT. // See https://github.com/valyala/quicktemplate for details. //line web/home.qtpl:1 package web //line web/home.qtpl:1 import ( "source.toby3d.me/toby3d/auth/internal/domain" ) //line web/home.qtpl:5 import ( qtio422016 "io" qt422016 "github.com/valyala/quicktemplate" ) //line web/home.qtpl:5 var ( _ = qtio422016.Copy _ = qt422016.AcquireByteBuffer ) //line web/home.qtpl:5 type HomePage struct { BaseOf Client *domain.Client State string } //line web/home.qtpl:12 func (p *HomePage) StreamHead(qw422016 *qt422016.Writer) { //line web/home.qtpl:12 qw422016.N().S(` `) //line web/home.qtpl:13 p.BaseOf.StreamHead(qw422016) //line web/home.qtpl:13 qw422016.N().S(` `) //line web/home.qtpl:14 for i := range p.Client.RedirectURI { //line web/home.qtpl:14 qw422016.N().S(` `) //line web/home.qtpl:17 } //line web/home.qtpl:17 qw422016.N().S(` `) //line web/home.qtpl:18 } //line web/home.qtpl:18 func (p *HomePage) WriteHead(qq422016 qtio422016.Writer) { //line web/home.qtpl:18 qw422016 := qt422016.AcquireWriter(qq422016) //line web/home.qtpl:18 p.StreamHead(qw422016) //line web/home.qtpl:18 qt422016.ReleaseWriter(qw422016) //line web/home.qtpl:18 } //line web/home.qtpl:18 func (p *HomePage) Head() string { //line web/home.qtpl:18 qb422016 := qt422016.AcquireByteBuffer() //line web/home.qtpl:18 p.WriteHead(qb422016) //line web/home.qtpl:18 qs422016 := string(qb422016.B) //line web/home.qtpl:18 qt422016.ReleaseByteBuffer(qb422016) //line web/home.qtpl:18 return qs422016 //line web/home.qtpl:18 } //line web/home.qtpl:20 func (p *HomePage) StreamBody(qw422016 *qt422016.Writer) { //line web/home.qtpl:20 qw422016.N().S(`

`) //line web/home.qtpl:36 qw422016.E().S(p.Client.GetName()) //line web/home.qtpl:36 qw422016.N().S(`

`) //line web/home.qtpl:49 for name, value := range map[string]string{ "client_id": p.Client.ID.String(), "redirect_uri": p.Client.RedirectURI[0].String(), "response_type": domain.ResponseTypeCode.String(), "state": p.State, } { //line web/home.qtpl:54 qw422016.N().S(` `) //line web/home.qtpl:58 } //line web/home.qtpl:58 qw422016.N().S(` `) //line web/home.qtpl:60 for _, scope := range []domain.Scope{ domain.ScopeEmail, domain.ScopeProfile, } { //line web/home.qtpl:63 qw422016.N().S(` `) //line web/home.qtpl:67 } //line web/home.qtpl:67 qw422016.N().S(`
`) //line web/home.qtpl:79 } //line web/home.qtpl:79 func (p *HomePage) WriteBody(qq422016 qtio422016.Writer) { //line web/home.qtpl:79 qw422016 := qt422016.AcquireWriter(qq422016) //line web/home.qtpl:79 p.StreamBody(qw422016) //line web/home.qtpl:79 qt422016.ReleaseWriter(qw422016) //line web/home.qtpl:79 } //line web/home.qtpl:79 func (p *HomePage) Body() string { //line web/home.qtpl:79 qb422016 := qt422016.AcquireByteBuffer() //line web/home.qtpl:79 p.WriteBody(qb422016) //line web/home.qtpl:79 qs422016 := string(qb422016.B) //line web/home.qtpl:79 qt422016.ReleaseByteBuffer(qb422016) //line web/home.qtpl:79 return qs422016 //line web/home.qtpl:79 }