diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 14:29:38 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 14:30:06 -0400 |
commit | af6a4b21614c602ae8fe5323fab2b384c6ad5393 (patch) | |
tree | 28c8c1c7343fdccd7dbcd47a9908f995f8ae63a5 /phpBB/adm/style/auth_provider_oauth.html | |
parent | 2fc4be1a31e44f30ea96914bf657e4e7b2236760 (diff) | |
download | forums-af6a4b21614c602ae8fe5323fab2b384c6ad5393.tar forums-af6a4b21614c602ae8fe5323fab2b384c6ad5393.tar.gz forums-af6a4b21614c602ae8fe5323fab2b384c6ad5393.tar.bz2 forums-af6a4b21614c602ae8fe5323fab2b384c6ad5393.tar.xz forums-af6a4b21614c602ae8fe5323fab2b384c6ad5393.zip |
[feature/oauth] Clean up the OAuth ACP template
PHPBB3-11673
Diffstat (limited to 'phpBB/adm/style/auth_provider_oauth.html')
-rw-r--r-- | phpBB/adm/style/auth_provider_oauth.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/adm/style/auth_provider_oauth.html b/phpBB/adm/style/auth_provider_oauth.html index 87f8716c5e..25e40ff596 100644 --- a/phpBB/adm/style/auth_provider_oauth.html +++ b/phpBB/adm/style/auth_provider_oauth.html @@ -1,14 +1,16 @@ <h2>{L_AUTH_PROVIDER_OAUTH_TITLE}</h2> +<p>{L_AUTH_PROVIDER_OAUTH_EXPLAIN}</p> + <!-- BEGIN oauth_services --> <fieldset> <legend>{oauth_services.ACTUAL_NAME}</legend> <dl> - <dt><label for="oauth_service_{oauth_services.NAME}_key">{L_AUTH_PROVIDER_OAUTH_KEY}{L_COLON}</label><br /><span>{L_AUTH_PROVIDER_OAUTH_KEY_EXPLAIN}</span></dt> + <dt><label for="oauth_service_{oauth_services.NAME}_key">{L_AUTH_PROVIDER_OAUTH_KEY}{L_COLON}</label></dt> <dd><input type="text" id="oauth_service_{oauth_services.NAME}_key" size="40" name="config[auth_oauth_{oauth_services.NAME}_key]" value="{oauth_services.KEY}" /></dd> </dl> <dl> - <dt><label for="oauth_service_{oauth_services.NAME}_secret">{L_AUTH_PROVIDER_OAUTH_SECRET}{L_COLON}</label><br /><span>{L_AUTH_PROVIDER_OAUTH_SECRET_EXPLAIN}</span></dt> + <dt><label for="oauth_service_{oauth_services.NAME}_secret">{L_AUTH_PROVIDER_OAUTH_SECRET}{L_COLON}</label></dt> <dd><input type="text" id="oauth_service_{oauth_services.NAME}_secret" size="40" name="config[auth_oauth_{oauth_services.NAME}_secret]" value="{oauth_services.SECRET}" /></dd> </dl> </fieldset> |