mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
27 lines
684 B
HTML
27 lines
684 B
HTML
{{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}}
|