{{ define "tpl" }}
{{ $regEnabled := qb "SELECT value_int FROM system_settings WHERE name = 'registrations_enabled'" }} {{ if .Context.User.ID }}
{{ .T "You're already logged in!" }}
{{ else if not ($regEnabled.value_int.Bool) }}
{{ .T "Sorry, it's not possible to register at the moment. Please try again later." }}
{{ else }} {{ if eq (.Gin.Query "stopsign") "1" }}
{{ .T "Remember: this seems like it's your second account! Do not multiaccount, or you're likely to get restricted!" }}
{{ end }}
Don't have a code? Apply here!
{{ with config "RecaptchaSite" }}
{{ end }} {{ ieForm .Gin }}
{{ end }}
{{ end }}