Merge pull request #938 from mattermost/plt-111

PLT-111 Combining email verification confirmation screen with login screen.
This commit is contained in:
Corey Hulen
2015-10-06 13:24:17 -07:00
5 changed files with 38 additions and 23 deletions

View File

@@ -1,16 +1,21 @@
{{define "verify"}}
<!DOCTYPE html>
<html>
{{template "head" . }}
<body>
<div class="container-fluid">
<div class="row">
<div id="verify"></div>
{{template "head" . }}
<body class="white">
<div class="container-fluid">
<div class="inner__wrap">
<div class="row content">
<div id="verify"></div>
</div>
<div class="row footer">
{{template "footer" . }}
</div>
</div>
</div>
</div>
<script>
window.setupVerifyPage({{ .Props }});
</script>
</body>
<script>
window.setupVerifyPage({{ .Props }});
</script>
</body>
</html>
{{end}}