Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2018-11-07 09:34:21 +0300
committerdartcafe <github@dartcafe.de>2018-11-07 09:34:21 +0300
commita2fb9a4b96c6d426d1ce862985105f8d3e27122b (patch)
treed7bf3cdb7868e4ac1d8fa0e2321a95eefb0bea3e /templates
parentc26564070c020ba5a2d3d23565a003ace732d9d5 (diff)
CSS4 variables and tidy
Diffstat (limited to 'templates')
-rw-r--r--templates/no.acc.tmpl.php23
-rw-r--r--templates/no.create.tmpl.php22
-rw-r--r--templates/no.delete.tmpl.php22
3 files changed, 24 insertions, 43 deletions
diff --git a/templates/no.acc.tmpl.php b/templates/no.acc.tmpl.php
index f6499ccf..9f0fcb24 100644
--- a/templates/no.acc.tmpl.php
+++ b/templates/no.acc.tmpl.php
@@ -24,19 +24,12 @@
use OCP\Util;
Util::addStyle('polls', 'main');
?>
-<div id="app">
- <div id="app-content">
- <div id="app-content-wrapper">
- <div id="emptycontent" class="">
- <div class="icon-polls"></div>
- <h1>
- <?php p($l->t('Access denied')); ?>
- </h1>
- <h2>
- <?php p($l->t('You are not allowed to view this poll or the poll does not exist.')); ?>
- </h2>
- </div>
- </div>
- </div>
+<div id="emptycontent" class="">
+ <div class="icon-polls"></div>
+ <h1>
+ <?php p($l->t('Access denied')); ?>
+ </h1>
+ <h2>
+ <?php p($l->t('You are not allowed to view this poll or the poll does not exist.')); ?>
+ </h2>
</div>
-
diff --git a/templates/no.create.tmpl.php b/templates/no.create.tmpl.php
index 188aba66..2bbd880d 100644
--- a/templates/no.create.tmpl.php
+++ b/templates/no.create.tmpl.php
@@ -24,18 +24,12 @@
use OCP\Util;
Util::addStyle('polls', 'main');
?>
-<div id="app">
- <div id="app-content">
- <div id="app-content-wrapper">
- <div id="emptycontent" class="">
- <div class="icon-polls"></div>
- <h1>
- <?php p($l->t('Access denied')); ?>
- </h1>
- <h2>
- <?php p($l->t('You are not allowed to edit this poll or the poll does not exist.')); ?>
- </h2>
- </div>
- </div>
- </div>
+<div id="emptycontent" class="">
+ <div class="icon-polls"></div>
+ <h1>
+ <?php p($l->t('Access denied')); ?>
+ </h1>
+ <h2>
+ <?php p($l->t('You are not allowed to edit this poll or the poll does not exist.')); ?>
+ </h2>
</div>
diff --git a/templates/no.delete.tmpl.php b/templates/no.delete.tmpl.php
index 7906e05e..19053dbb 100644
--- a/templates/no.delete.tmpl.php
+++ b/templates/no.delete.tmpl.php
@@ -24,18 +24,12 @@
use OCP\Util;
Util::addStyle('polls', 'main');
?>
-<div id="app">
- <div id="app-content">
- <div id="app-content-wrapper">
- <div id="emptycontent" class="">
- <div class="icon-polls"></div>
- <h1>
- <?php p($l->t('Access denied')); ?>
- </h1>
- <h2>
- <?php p($l->t('You are either not allowed to delete this poll or it doesn\'t exist.')); ?>
- </h2>
- </div>
- </div>
- </div>
+<div id="emptycontent" class="">
+ <div class="icon-polls"></div>
+ <h1>
+ <?php p($l->t('Access denied')); ?>
+ </h1>
+ <h2>
+ <?php p($l->t('You are either not allowed to delete this poll or it doesn\'t exist.')); ?>
+ </h2>
</div>