diff --git a/providers/oidc.go b/providers/oidc.go
index ec0152ab..0c0fa52a 100644
--- a/providers/oidc.go
+++ b/providers/oidc.go
@@ -17,6 +17,7 @@ type OIDCProvider struct {
 }
 
 func NewOIDCProvider(p *ProviderData) *OIDCProvider {
+	p.ProviderName = "OpenID Connect"
 	return &OIDCProvider{ProviderData: p}
 }
 
diff --git a/templates.go b/templates.go
index c5619b25..80408bd0 100644
--- a/templates.go
+++ b/templates.go
@@ -115,7 +115,7 @@ func getTemplates() *template.Template {
 	{{ if .SignInMessage }}
 	<p>{{.SignInMessage}}</p>
 	{{ end}}
-	<button type="submit" class="btn">Sign in with a {{.ProviderName}} Account</button><br/>
+	<button type="submit" class="btn">Sign in with {{.ProviderName}}</button><br/>
 	</form>
 	</div>