{{ template "layout" . }} {{ define "title" }}Complete Registration - {{ .App.Config.ApplicationName }}{{ end }} {{ define "content" }} {{ template "header" . }} {{ $dividerNeeded := false }} {{ if .AnyUnmigratedUsers }} {{ if $dividerNeeded }}
You can link this identity provider to an existing {{ .App.Config.ApplicationName }} account.
{{ $dividerNeeded := true }} {{ end }} {{ if .App.Config.CreateNewPlayer.Allow }} {{ if $dividerNeeded }}Complete registration by creating a new player:
{{ else }}Complete registration by creating a new player with a random UUID:
{{ end }} {{ $dividerNeeded = true }} {{ end }} {{ if .App.Config.ImportExistingPlayer.Allow }} {{ if $dividerNeeded }}Registration as an existing player is invite-only.
{{ else }} {{ if .App.Config.ImportExistingPlayer.RequireSkinVerification }}Register a new account with the UUID of an existing {{ .App.Config.ImportExistingPlayer.Nickname }} account. Requires verification that you own the account.
{{ if .InviteCode }}Using invite code {{ .InviteCode }}
{{ end }} {{ else }}Register a new account with the UUID of an existing {{ .App.Config.ImportExistingPlayer.Nickname }} account.
{{ end }} {{ end }} {{ $dividerNeeded = true }} {{ end }} {{ template "footer" . }} {{ end }}