mirror of
https://github.com/rjNemo/rentease.git
synced 2026-06-10 20:56:50 +00:00
25 lines
513 B
Text
25 lines
513 B
Text
package view
|
|
|
|
import (
|
|
"github.com/rjNemo/rentease/internal/view/layout"
|
|
"github.com/rjNemo/rentease/internal/view/component"
|
|
)
|
|
|
|
templ Index() {
|
|
@layout.PublicLayout() {
|
|
<section>
|
|
<h1>Reserver votre sejour des maintenant</h1>
|
|
<article>
|
|
@component.RequestBookingForm(&component.RequestBookingViewModel{
|
|
Item: "T2",
|
|
From: "",
|
|
To: "",
|
|
Name: "",
|
|
PhoneNumber: "",
|
|
Email: "",
|
|
Errors: nil,
|
|
})
|
|
</article>
|
|
</section>
|
|
}
|
|
}
|