summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorTom Needham <tom@owncloud.com>2012-07-30 10:51:00 +0000
committerTom Needham <tom@owncloud.com>2012-07-30 10:51:00 +0000
commit138c66a2ba1fdc7b44297bfe8498c200d6d2f250 (patch)
treefdbcaf6f3b79ee0ca427ccba88800382853b9c34 /settings/templates
parent5933d4390107224071f8265afd81222b69f98de7 (diff)
downloadnextcloud-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.php25
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>