kycnot.me/src/frontend/templates/service_request_form.templ
2025-05-10 19:39:05 +03:00

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>
}
}