1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 13:30:26 +00:00
mycorrhiza/views/auth.qtpl.go

396 lines
10 KiB
Go
Raw Normal View History

2020-11-14 13:03:06 +00:00
// Code generated by qtc from "auth.qtpl". DO NOT EDIT.
// See https://github.com/valyala/quicktemplate for details.
//line views/auth.qtpl:1
package views
2020-11-14 13:03:06 +00:00
//line views/auth.qtpl:1
import "net/http"
2020-11-14 13:03:06 +00:00
2021-02-23 14:36:12 +00:00
//line views/auth.qtpl:2
import "github.com/bouncepaw/mycorrhiza/cfg"
2021-02-23 14:36:12 +00:00
//line views/auth.qtpl:4
2020-11-14 13:03:06 +00:00
import (
qtio422016 "io"
qt422016 "github.com/valyala/quicktemplate"
)
//line views/auth.qtpl:4
2020-11-14 13:03:06 +00:00
var (
_ = qtio422016.Copy
_ = qt422016.AcquireByteBuffer
)
//line views/auth.qtpl:4
func StreamRegisterHTML(qw422016 *qt422016.Writer, rq *http.Request) {
//line views/auth.qtpl:4
qw422016.N().S(`
<div class="layout">
<main class="main-width">
<section>
`)
//line views/auth.qtpl:8
if cfg.AllowRegistration {
//line views/auth.qtpl:8
qw422016.N().S(`
<form class="modal" method="post" action="/register?`)
//line views/auth.qtpl:9
qw422016.E().S(rq.URL.RawQuery)
//line views/auth.qtpl:9
qw422016.N().S(`" id="register-form" enctype="multipart/form-data" autocomplete="off">
<fieldset class="modal__fieldset">
2021-06-06 14:21:21 +00:00
<legend class="modal__title">Register on `)
//line views/auth.qtpl:11
qw422016.E().S(cfg.WikiName)
//line views/auth.qtpl:11
qw422016.N().S(`</legend>
<label for="register-form__username">Username</label>
<br>
<input type="text" required autofocus id="login-form__username" name="username">
<br>
<label for="login-form__password">Password</label>
<br>
<input type="password" required name="password">
<p>The server stores your password in an encrypted form; even administrators cannot read it.</p>
<p>By submitting this form you give this wiki a permission to store cookies in your browser. It lets the engine associate your edits with you. You will stay logged in until you log out.</p>
<input class="btn" type="submit" value="Register">
<a class="btn btn_weak" href="/`)
//line views/auth.qtpl:23
qw422016.E().S(rq.URL.RawQuery)
//line views/auth.qtpl:23
qw422016.N().S(`">Cancel</a>
</fieldset>
</form>
`)
//line views/auth.qtpl:26
} else if cfg.UseAuth {
//line views/auth.qtpl:26
qw422016.N().S(`
<p>Registrations are currently closed. Administrators can make an account for you by hand; contact them.</p>
<p><a href="/`)
//line views/auth.qtpl:28
qw422016.E().S(rq.URL.RawQuery)
//line views/auth.qtpl:28
qw422016.N().S(`"> Go back</a></p>
`)
//line views/auth.qtpl:29
} else {
//line views/auth.qtpl:29
qw422016.N().S(`
<p>Authentication is disabled. You can make edits anonymously.</p>
<p><a href="/`)
//line views/auth.qtpl:31
qw422016.E().S(rq.URL.RawQuery)
//line views/auth.qtpl:31
qw422016.N().S(`"> Go back</a></p>
`)
//line views/auth.qtpl:32
}
//line views/auth.qtpl:32
qw422016.N().S(`
</section>
</main>
</div>
`)
//line views/auth.qtpl:36
}
//line views/auth.qtpl:36
func WriteRegisterHTML(qq422016 qtio422016.Writer, rq *http.Request) {
//line views/auth.qtpl:36
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/auth.qtpl:36
StreamRegisterHTML(qw422016, rq)
//line views/auth.qtpl:36
qt422016.ReleaseWriter(qw422016)
//line views/auth.qtpl:36
}
//line views/auth.qtpl:36
func RegisterHTML(rq *http.Request) string {
//line views/auth.qtpl:36
qb422016 := qt422016.AcquireByteBuffer()
//line views/auth.qtpl:36
WriteRegisterHTML(qb422016, rq)
//line views/auth.qtpl:36
qs422016 := string(qb422016.B)
//line views/auth.qtpl:36
qt422016.ReleaseByteBuffer(qb422016)
//line views/auth.qtpl:36
return qs422016
//line views/auth.qtpl:36
}
//line views/auth.qtpl:38
2020-11-14 13:03:06 +00:00
func StreamLoginHTML(qw422016 *qt422016.Writer) {
//line views/auth.qtpl:38
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
2021-01-26 05:41:57 +00:00
<div class="layout">
<main class="main-width">
2020-11-14 13:03:06 +00:00
<section>
`)
//line views/auth.qtpl:42
if cfg.UseAuth {
//line views/auth.qtpl:42
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
2021-02-23 14:36:12 +00:00
<form class="modal" method="post" action="/login-data" id="login-form" enctype="multipart/form-data" autocomplete="on">
<fieldset class="modal__fieldset">
<legend class="modal__title">Log in to `)
//line views/auth.qtpl:45
qw422016.E().S(cfg.WikiName)
//line views/auth.qtpl:45
2021-02-23 14:36:12 +00:00
qw422016.N().S(`</legend>
<label for="login-form__username">Username</label>
<br>
<input type="text" required autofocus id="login-form__username" name="username" autocomplete="username">
<br>
<label for="login-form__password">Password</label>
<br>
<input type="password" required name="password" autocomplete="current-password">
<p>By submitting this form you give this wiki a permission to store cookies in your browser. It lets the engine associate your edits with you. You will stay logged in until you log out.</p>
<input class="btn" type="submit" value="Log in">
<a class="btn btn_weak" href="/">Cancel</a>
2020-11-14 13:03:06 +00:00
</fieldset>
</form>
`)
//line views/auth.qtpl:58
2020-11-14 13:03:06 +00:00
} else {
//line views/auth.qtpl:58
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
<p>Authentication is disabled. You can make edits anonymously.</p>
<p><a class="btn btn_weak" href="/"> Go home</a></p>
2020-11-14 13:03:06 +00:00
`)
//line views/auth.qtpl:61
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:61
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
</section>
</main>
2021-01-26 05:41:57 +00:00
</div>
2020-11-14 13:03:06 +00:00
`)
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
func WriteLoginHTML(qq422016 qtio422016.Writer) {
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
StreamLoginHTML(qw422016)
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
qt422016.ReleaseWriter(qw422016)
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
func LoginHTML() string {
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
qb422016 := qt422016.AcquireByteBuffer()
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
WriteLoginHTML(qb422016)
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
qs422016 := string(qb422016.B)
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
qt422016.ReleaseByteBuffer(qb422016)
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
return qs422016
//line views/auth.qtpl:65
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:67
2020-11-14 13:03:06 +00:00
func StreamLoginErrorHTML(qw422016 *qt422016.Writer, err string) {
//line views/auth.qtpl:67
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
2021-01-26 05:41:57 +00:00
<div class="layout">
<main class="main-width">
2020-11-14 13:03:06 +00:00
<section>
`)
//line views/auth.qtpl:71
2020-11-14 13:03:06 +00:00
switch err {
//line views/auth.qtpl:72
2020-11-14 13:03:06 +00:00
case "unknown username":
//line views/auth.qtpl:72
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
<p class="error">Unknown username.</p>
`)
//line views/auth.qtpl:74
2020-11-14 13:03:06 +00:00
case "wrong password":
//line views/auth.qtpl:74
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
<p class="error">Wrong password.</p>
`)
//line views/auth.qtpl:76
2020-11-14 13:03:06 +00:00
default:
//line views/auth.qtpl:76
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
<p class="error">`)
//line views/auth.qtpl:77
2020-11-14 13:03:06 +00:00
qw422016.E().S(err)
//line views/auth.qtpl:77
2020-11-14 13:03:06 +00:00
qw422016.N().S(`</p>
`)
//line views/auth.qtpl:78
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:78
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
<p><a href="/login"> Try again</a></p>
</section>
</main>
2021-01-26 05:41:57 +00:00
</div>
2020-11-14 13:03:06 +00:00
`)
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
func WriteLoginErrorHTML(qq422016 qtio422016.Writer, err string) {
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
StreamLoginErrorHTML(qw422016, err)
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
qt422016.ReleaseWriter(qw422016)
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
func LoginErrorHTML(err string) string {
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
qb422016 := qt422016.AcquireByteBuffer()
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
WriteLoginErrorHTML(qb422016, err)
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
qs422016 := string(qb422016.B)
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
qt422016.ReleaseByteBuffer(qb422016)
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
return qs422016
//line views/auth.qtpl:83
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:85
2020-11-14 13:03:06 +00:00
func StreamLogoutHTML(qw422016 *qt422016.Writer, can bool) {
//line views/auth.qtpl:85
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
2021-01-26 05:41:57 +00:00
<div class="layout">
<main class="main-width">
2020-11-14 13:03:06 +00:00
<section>
`)
//line views/auth.qtpl:89
2020-11-14 13:03:06 +00:00
if can {
//line views/auth.qtpl:89
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
<h1>Log out?</h1>
<p><a href="/logout-confirm"><strong>Confirm</strong></a></p>
<p><a href="/">Cancel</a></p>
`)
//line views/auth.qtpl:93
2020-11-14 13:03:06 +00:00
} else {
//line views/auth.qtpl:93
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
<p>You cannot log out because you are not logged in.</p>
<p><a href="/login">Login</a></p>
<p><a href="/login"> Home</a></p>
`)
//line views/auth.qtpl:97
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:97
2020-11-14 13:03:06 +00:00
qw422016.N().S(`
</section>
</main>
2021-01-26 05:41:57 +00:00
</div>
2020-11-14 13:03:06 +00:00
`)
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
func WriteLogoutHTML(qq422016 qtio422016.Writer, can bool) {
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
StreamLogoutHTML(qw422016, can)
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
qt422016.ReleaseWriter(qw422016)
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
func LogoutHTML(can bool) string {
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
qb422016 := qt422016.AcquireByteBuffer()
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
WriteLogoutHTML(qb422016, can)
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
qs422016 := string(qb422016.B)
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
qt422016.ReleaseByteBuffer(qb422016)
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
return qs422016
//line views/auth.qtpl:101
2020-11-14 13:03:06 +00:00
}
//line views/auth.qtpl:103
func StreamLockHTML(qw422016 *qt422016.Writer) {
//line views/auth.qtpl:103
qw422016.N().S(`
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>🔒 Locked</title>
<link rel="shortcut icon" href="/static/favicon.ico">
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<main class="locked-notice">
<section class="locked-notice__message">
<p class="locked-notice__lock">🔒</p>
<h1 class="locked-notice__title">Locked</h1>
<form class="locked-notice__login-form" method="post" action="/login-data" id="login-form" enctype="multipart/form-data" autocomplete="on">
<label for="login-form__username">Username</label>
<br>
<input type="text" required autofocus id="login-form__username" name="username" autocomplete="username">
<br>
<label for="login-form__password">Password</label>
<br>
<input type="password" required name="password" autocomplete="current-password">
<br>
<input class="btn" type="submit" value="Log in">
</form>
</section>
</main>
</body>
</html>
`)
//line views/auth.qtpl:133
}
//line views/auth.qtpl:133
func WriteLockHTML(qq422016 qtio422016.Writer) {
//line views/auth.qtpl:133
qw422016 := qt422016.AcquireWriter(qq422016)
//line views/auth.qtpl:133
StreamLockHTML(qw422016)
//line views/auth.qtpl:133
qt422016.ReleaseWriter(qw422016)
//line views/auth.qtpl:133
}
//line views/auth.qtpl:133
func LockHTML() string {
//line views/auth.qtpl:133
qb422016 := qt422016.AcquireByteBuffer()
//line views/auth.qtpl:133
WriteLockHTML(qb422016)
//line views/auth.qtpl:133
qs422016 := string(qb422016.B)
//line views/auth.qtpl:133
qt422016.ReleaseByteBuffer(qb422016)
//line views/auth.qtpl:133
return qs422016
//line views/auth.qtpl:133
}