aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-04-07 10:23:43 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-04-07 10:23:43 +0200
commitb693798a9663a9e1488a7c2866a95ed143cabfb2 (patch)
treeb612afc2d3423ce8932afe064571f2a6bf83b255 /phpBB/styles/prosilver
parent72f748f11febc962789e9231a6b4102d50e327c9 (diff)
parent202fa648ebda27bf7305a0f227c59edfac08ff3d (diff)
downloadforums-b693798a9663a9e1488a7c2866a95ed143cabfb2.tar
forums-b693798a9663a9e1488a7c2866a95ed143cabfb2.tar.gz
forums-b693798a9663a9e1488a7c2866a95ed143cabfb2.tar.bz2
forums-b693798a9663a9e1488a7c2866a95ed143cabfb2.tar.xz
forums-b693798a9663a9e1488a7c2866a95ed143cabfb2.zip
Merge pull request #5560 from 3D-I/ticket/16009
[ticket/16009] Display OAuth login's buttons in a row
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r--phpBB/styles/prosilver/template/login_body_oauth.html10
1 files 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>