Files
build-web-application-with-…/de/code/src/apps/ch.4.2/submission.gtpl
2015-08-06 20:35:55 +02:00

16 lines
238 B
Groovy

{{define "submission"}}<!DOCTYPE html>
<html>
<body>
{{if .Errors}}
<h2>Errors:</h2>
<ol>
{{range .Errors}}
<li>{{.}}</li>
{{end}}
</ol>
{{else}}
Profile successfully submitted.
{{end}}
</body>
</html>
{{end}}