cake-order-tracker/server/templates/confirmation.templ
2026-06-16 16:54:45 +02:00

12 lines
320 B
Text

package templates
import "strconv"
templ Confirmation(id int) {
<span class="material-symbols-outlined success-icon">check_circle</span>
<h2>{ strconv.Itoa(id) } — zapisano</h2>
<a href="/orders" class="btn btn-primary">
<span class="material-symbols-outlined">arrow_back</span>
Powrót do zamówień
</a>
}