99da1fcbaa
Added support for temporary bans. Moved the Gosora specific template logic out of main.go and into template_init.go Added an internal temporary group API. We now use h1s in the theme headers. There may be some issues with the themes other than Shadow which we may need to resolve. Added ARIA attributes in a few places for improved accessibility. Added support for inputs in links for the .edit_field API. Removed a few unneccesary prepared statements.
13 lines
369 B
HTML
13 lines
369 B
HTML
{{template "header.html" . }}
|
|
<main>
|
|
<div class="rowblock rowhead">
|
|
<div class="rowitem"><h1>Are you sure?</h1></div>
|
|
</div>
|
|
<div class="rowblock">
|
|
<div class="rowitem passive">{{.Something.Message}}<br /><br />
|
|
<a class="username" href="{{.Something.URL}}?session={{.CurrentUser.Session}}">Continue</a>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{{template "footer.html" . }}
|