mirror of
https://codeberg.org/pluja/kycnot.me
synced 2025-12-15 15:59:57 -05:00
16 lines
521 B
Text
16 lines
521 B
Text
package templates
|
|
|
|
import (
|
|
"kycnot.me/internal/ent"
|
|
"kycnot.me/internal/models"
|
|
)
|
|
|
|
templ RequestForm(opts *models.BaseOpts, attributes []*ent.Attribute) {
|
|
@Base("Request") {
|
|
<div class="flex py-8 justify-center items-center">
|
|
<p class="px-2 py-2 font-bold text-center rounded-lg bg-yellow-500/70 text-md text-neutral-100">
|
|
Service requests are disabled until the new version is published. Please <a class="underline" href="https://blog.kycnot.me/p/2025-03-info">Read the blog post</a>.
|
|
</p>
|
|
</div>
|
|
}
|
|
}
|