mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
17 lines
292 B
HTML
17 lines
292 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 }});
|
|
</script>
|
|
</body>
|
|
</html>
|
|
{{end}}
|