summaryrefslogtreecommitdiffstats
path: root/web/templates/password_reset.html
blob: 7f6335c923704e28e0a4903a63ebc5239fa96db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{define "password_reset"}}
<!DOCTYPE html>
<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 }});
	</script>
</body>
</html>
{{end}}