// Code generated by qtc from "login.qtpl". DO NOT EDIT. // See https://github.com/valyala/quicktemplate for details. // Error page template. Implements BasePage methods. // //line templates/login.qtpl:3 package templates //line templates/login.qtpl:3 import ( qtio422016 "io" qt422016 "github.com/valyala/quicktemplate" ) //line templates/login.qtpl:3 var ( _ = qtio422016.Copy _ = qt422016.AcquireByteBuffer ) //line templates/login.qtpl:4 type LoginPage struct { // inherit from base page, so its' title is used in error page. BasePage PostEndpoint string } //line templates/login.qtpl:12 func (p *LoginPage) StreamBody(qw422016 *qt422016.Writer) { //line templates/login.qtpl:12 qw422016.N().S(`
`) //line templates/login.qtpl:27 p.BasePage.StreamFooter(qw422016, p.Status) //line templates/login.qtpl:27 qw422016.N().S(` `) //line templates/login.qtpl:28 } //line templates/login.qtpl:28 func (p *LoginPage) WriteBody(qq422016 qtio422016.Writer) { //line templates/login.qtpl:28 qw422016 := qt422016.AcquireWriter(qq422016) //line templates/login.qtpl:28 p.StreamBody(qw422016) //line templates/login.qtpl:28 qt422016.ReleaseWriter(qw422016) //line templates/login.qtpl:28 } //line templates/login.qtpl:28 func (p *LoginPage) Body() string { //line templates/login.qtpl:28 qb422016 := qt422016.AcquireByteBuffer() //line templates/login.qtpl:28 p.WriteBody(qb422016) //line templates/login.qtpl:28 qs422016 := string(qb422016.B) //line templates/login.qtpl:28 qt422016.ReleaseByteBuffer(qb422016) //line templates/login.qtpl:28 return qs422016 //line templates/login.qtpl:28 }