12 lines
320 B
Text
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>
|
|
}
|