Noah
dd1e6c2918
* Initial codebase (lot of work!) * Uses vanilla Go net/http and implements by hand: session cookies backed by Redis; log in/out; CSRF protection; email verification flow; initial database models (User table)
15 lines
335 B
HTML
15 lines
335 B
HTML
{{define "content"}}
|
|
<div class="container">
|
|
<section class="hero block is-danger is-bold">
|
|
<div class="hero-body">
|
|
<div class="container">
|
|
<h1 class="title">{{.Header}}</h1>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="block">
|
|
{{.Message}}
|
|
</div>
|
|
</div>
|
|
{{end}} |