mirror of
https://github.com/v1k45/pastepass.git
synced 2025-12-23 06:15:48 +00:00
14 lines
295 B
Plaintext
14 lines
295 B
Plaintext
package views
|
|
|
|
templ Error(title, message string) {
|
|
@base() {
|
|
<div style="padding-bottom: 5rem;">
|
|
<hgroup>
|
|
<h3>{title}</h3>
|
|
<small style="color: #8891A4;">
|
|
{message}
|
|
</small>
|
|
</hgroup>
|
|
</div>
|
|
}
|
|
} |