Files
mattermost/web/templates/verify.html

17 lines
349 B
HTML

{{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}}