blob: de839db68e6365a68cdbeab65e8642b8f586ef59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{{define "verify"}}
<!DOCTYPE html>
<html>
{{template "head" . }}
<body>
<div class="container-fluid">
<div class="row">
<div id="verify"></div>
</div>
</div>
<script>
window.setupVerifyPage('{{.Props.IsVerified}}', '{{.Props.TeamURL}}', '{{.Props.UserEmail}}');
</script>
</body>
</html>
{{end}}
|