From 202fa648ebda27bf7305a0f227c59edfac08ff3d Mon Sep 17 00:00:00 2001
From: 3D-I <marktravai@gmail.com>
Date: Wed, 3 Apr 2019 00:39:50 +0200
Subject: [PATCH] [ticket/16009] Display OAuth login's buttons in a row

PHPBB3-16009
---
 phpBB/styles/prosilver/template/login_body_oauth.html | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/phpBB/styles/prosilver/template/login_body_oauth.html b/phpBB/styles/prosilver/template/login_body_oauth.html
index 156485d211..1364d01ccb 100644
--- a/phpBB/styles/prosilver/template/login_body_oauth.html
+++ b/phpBB/styles/prosilver/template/login_body_oauth.html
@@ -1,8 +1,6 @@
+<br>
 <div class="content">
-	<!-- BEGIN oauth -->
-	<dl>
-		<dt>&nbsp;</dt>
-		<dd><a href="{oauth.REDIRECT_URL}" class="button2">{oauth.SERVICE_NAME}</a></dd>
-	</dl>
-	<!-- END oauth -->
+	{% for oauth in oauth %}
+		<a href="{{ oauth.REDIRECT_URL }}" class="button2">{{ oauth.SERVICE_NAME }}</a>
+	{% endfor %}
 </div>