18 lines
510 B
Text
18 lines
510 B
Text
package templates
|
|
|
|
import "strconv"
|
|
|
|
templ Confirmation(title string, id int) {
|
|
@Layout(title, ConfirmationBody(id))
|
|
}
|
|
|
|
templ ConfirmationBody(id int) {
|
|
<div class="confirmation">
|
|
<span class="material-symbols-outlined" style="font-size:48px;color:var(--success-text)">check_circle</span>
|
|
<h2>{ strconv.Itoa(id) } — zapisano</h2>
|
|
<a href="/orders" class="btn btn-primary" style="margin-top:16px">
|
|
<span class="material-symbols-outlined">arrow_back</span>
|
|
Powrót do zamówień
|
|
</a>
|
|
</div>
|
|
}
|