diff options
author | Tom Needham <tom@owncloud.com> | 2012-07-30 10:51:00 +0000 |
---|---|---|
committer | Tom Needham <tom@owncloud.com> | 2012-07-30 10:51:00 +0000 |
commit | 138c66a2ba1fdc7b44297bfe8498c200d6d2f250 (patch) | |
tree | fdbcaf6f3b79ee0ca427ccba88800382853b9c34 /settings/templates | |
parent | 5933d4390107224071f8265afd81222b69f98de7 (diff) | |
download | nextcloud-server-138c66a2ba1fdc7b44297bfe8498c200d6d2f250.tar.gz nextcloud-server-138c66a2ba1fdc7b44297bfe8498c200d6d2f250.zip |
Improve styling of permission request page
Diffstat (limited to 'settings/templates')
-rw-r--r-- | settings/templates/oauth.php | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/settings/templates/oauth.php b/settings/templates/oauth.php index ce2584365b9..b9fa67d8a35 100644 --- a/settings/templates/oauth.php +++ b/settings/templates/oauth.php @@ -5,15 +5,16 @@ * See the COPYING-README file. */ ?> - -<p><strong><?php echo $_['consumer']['name']; ?></strong> is requesting permission to read, write, modify and delete data from the following apps:</p> -<ul> - <?php - // Foreach requested scope - foreach($_['consumer']['scopes'] as $app){ - echo '<li>'.$app.'</li>'; - } - ?> -</ul> -<button>Disallow</button> -<button>Allow</button>
\ No newline at end of file +<div id="oauth-request" class="guest-container"> + <p><strong><?php echo $_['consumer']['name']; ?></strong> is requesting permission to read, write, modify and delete data from the following apps:</p> + <ul> + <?php + // Foreach requested scope + foreach($_['consumer']['scopes'] as $app){ + echo '<li>'.$app.'</li>'; + } + ?> + </ul> + <button>Allow</button> + <button>Disallow</button> +</div> |