Renaming team.Name to team.DisplayName and team.Domain to team.Name. So: team.Name -> url safe name. team.DisplayName -> nice name for users
17 строки
421 B
HTML
17 строки
421 B
HTML
{{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.IsReset }}', '{{ .Props.TeamDisplayName }}', '{{ .Props.TeamName }}', '{{ .Props.Hash }}', '{{ .Props.Data }}');
|
|
</script>
|
|
</body>
|
|
</html>
|
|
{{end}}
|