summaryrefslogtreecommitdiffstats
path: root/web/templates/authorize.html
blob: 3392c1b1ee97798d4408aa6a2cf18c76a4e986cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{{define "authorize"}}
<html>
{{template "head" . }}
<body class="white">
	<div class="container-fluid">
		<div class="inner__wrap">
			<div class="row content">
				<div class="signup-header">
					{{.Props.TeamName}}
				</div>
				<div class="col-sm-12">
						<div id="authorize"></div>
				</div>
				<div class="footer-push"></div>
			</div>
			<div class="row footer">
				{{template "footer" . }}
			</div>
		</div>
	</div>
	<script>
		window.setup_authorize_page('{{ .Props.TeamName }}', '{{ .Props.AppName }}', '{{ .Props.ResponseType }}', '{{ .Props.ClientId }}', '{{ .Props.RedirectUri }}', '{{ .Props.Scope }}', '{{ .Props.State }}' );
	</script>
</body>
</html>
{{end}}