diff options
author | Marc Alexander <admin@m-a-styles.de> | 2019-04-07 10:23:43 +0200 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2019-04-07 10:23:43 +0200 |
commit | b693798a9663a9e1488a7c2866a95ed143cabfb2 (patch) | |
tree | b612afc2d3423ce8932afe064571f2a6bf83b255 /phpBB/styles/prosilver | |
parent | 72f748f11febc962789e9231a6b4102d50e327c9 (diff) | |
parent | 202fa648ebda27bf7305a0f227c59edfac08ff3d (diff) | |
download | forums-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.html | 10 |
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> </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> |