diff options
author | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 14:06:01 -0400 |
---|---|---|
committer | Joseph Warner <hardolaf@hardolaf.com> | 2013-07-23 14:06:24 -0400 |
commit | 93cbdc37b51edf14cb2dbebb1ccb71a612f7fd94 (patch) | |
tree | abc2f0197322da0c58c14890c6bf3168e7345c3b /phpBB/adm | |
parent | 5578b7a578cd9b2e8045d65c883a355f7a9f5394 (diff) | |
download | forums-93cbdc37b51edf14cb2dbebb1ccb71a612f7fd94.tar forums-93cbdc37b51edf14cb2dbebb1ccb71a612f7fd94.tar.gz forums-93cbdc37b51edf14cb2dbebb1ccb71a612f7fd94.tar.bz2 forums-93cbdc37b51edf14cb2dbebb1ccb71a612f7fd94.tar.xz forums-93cbdc37b51edf14cb2dbebb1ccb71a612f7fd94.zip |
[feature/oauth] ACP options for OAuth, needs some work
PHPBB3-11673
Diffstat (limited to 'phpBB/adm')
-rw-r--r-- | phpBB/adm/style/auth_provider_oauth.html | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/phpBB/adm/style/auth_provider_oauth.html b/phpBB/adm/style/auth_provider_oauth.html new file mode 100644 index 0000000000..e3e246d727 --- /dev/null +++ b/phpBB/adm/style/auth_provider_oauth.html @@ -0,0 +1,15 @@ +<h2>{L_AUTH_PROVIDER_OAUTH_TITLE}</h2> + +<!-- 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> + <dd><input type="text" id="oauth_service_{oauth_services.NAME}_key" size="40" name="config[auth_oauth_{oauth_services.NAME}_key]" value="{AUTH_LDAP_SERVER}" /></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> + <dd><input type="text" id="oauth_service_{oauth_services.NAME}_secret" size="40" name="config[auth_oauth_{oauth_services.NAME}_secret]" value="{AUTH_LDAP_SERVER}" /></dd> + </dl> +</fieldset> +<!-- END oauth_services --> |