summaryrefslogtreecommitdiffstats
path: root/web/templates/password_reset.html
blob: 1c5485e335bb456549b2fefe795f2836bbc16c12 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{define "password_reset"}}
<html>
{{template "head" . }}
<body class="white">
	<div class="container-fluid">
		<div class="inner__wrap">
			<div class="row content" id="reset"></div>
		</div>
	</div>
	<script>
		window.setup_password_reset_page('{{ .Props.IsReset }}', '{{ .Props.TeamName }}', '{{ .Props.Domain }}', '{{ .Props.Hash }}', '{{ .Props.Data }}');
	</script>
</body>
</html>
{{end}}