aboutsummaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-20 05:07:58 +0200
committerJan-Christoph Borchardt <JanCBorchardt@fsfe.org>2011-08-20 05:07:58 +0200
commitd9aae20003eb670b7bf86708016473969088066a (patch)
treee51450959802c1d32ecbcdeb0036efdc0842c2d1 /settings/templates
parentc2f0fe51c427374e918b72c28c521df27e614cae (diff)
downloadnextcloud-server-d9aae20003eb670b7bf86708016473969088066a.tar.gz
nextcloud-server-d9aae20003eb670b7bf86708016473969088066a.zip
more valid HTML, alt attributes, refactored pagenavi etc.
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/apps.php2
-rw-r--r--settings/templates/help.php6
-rw-r--r--settings/templates/users.php13
3 files changed, 12 insertions, 9 deletions
diff --git a/settings/templates/apps.php b/settings/templates/apps.php
index 025fbc4c81f..d5375c06fc4 100644
--- a/settings/templates/apps.php
+++ b/settings/templates/apps.php
@@ -12,5 +12,5 @@
<h3><strong><span class="name"><?php echo $l->t('Select an App');?></span></strong><span class="version"></span></h3>
<p class="description"></p>
<p class="hidden"><span class="licence"></span><?php echo $l->t('-licensed');?> <?php echo $l->t('by');?> <span class="author"></span></p>
- <input class="enable hidden" type="submit"></input>
+ <input class="enable hidden" type="submit" />
</div>
diff --git a/settings/templates/help.php b/settings/templates/help.php
index 31f6101c1ef..d44438add9b 100644
--- a/settings/templates/help.php
+++ b/settings/templates/help.php
@@ -1,13 +1,13 @@
<?php if(is_null($_["kbe"])):?>
<div class="personalblock">
- <p><?php echo $l->t('Problems connecting to help database.');?>
- <a href="http://apps.owncloud.com/kb"><?php echo $l->t('Go there manually.');?></a>
+ <p><?php echo $l->t('Problems connecting to help database.');?></p>
+ <p><a href="http://apps.owncloud.com/kb"><?php echo $l->t('Go there manually.');?></a></p>
</div>
<?php else:?>
<?php foreach($_["kbe"] as $kb): ?>
<div class="personalblock">
<?php if($kb["preview1"] <> "") { echo('<img class="preview" src="'.$kb["preview1"].'" />'); } ?>
- <p><strong><?php if($kb['detailpage']<>'') echo('<p><a target="_blank" href="'.$kb['detailpage'].'"><strong>'.$kb["name"].'</strong></a></p>');?></strong></p>
+ <?php if($kb['detailpage']<>'') echo('<p><a target="_blank" href="'.$kb['detailpage'].'"><strong>'.$kb["name"].'</strong></a></p>');?>
<p><?php echo $kb['description'];?></p>
<?php if($kb['answer']<>'') echo('<p><strong>'.$l->t('Answer').':</strong><p>'.$kb['answer'].'</p>');?>
</div>
diff --git a/settings/templates/users.php b/settings/templates/users.php
index 9733c3e9a50..244f3632931 100644
--- a/settings/templates/users.php
+++ b/settings/templates/users.php
@@ -6,17 +6,20 @@ foreach($_["groups"] as $group) {
?>
<table data-groups="<?php echo implode(', ',$allGroups);?>">
- <tbody>
- <tr id="controls"><form id="newuser">
- <th class="name"><input id="newusername" placeholder="<?php echo $l->t('Name')?>"></input></th>
- <th class="password"><input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>"></input></th>
+ <thead id="controls">
+ <tr><form id="newuser">
+ <th class="name"><input id="newusername" placeholder="<?php echo $l->t('Name')?>" /></th>
+ <th class="password"><input type="password" id="newuserpassword" placeholder="<?php echo $l->t('Password')?>" /></th>
<th class="groups"><select id="newusergroups" data-placeholder="groups" title="<?php echo $l->t('Groups')?>" multiple="multiple">
<?php foreach($_["groups"] as $group): ?>
<option value="<?php echo $group['name'];?>"><?php echo $group['name'];?></option>
<?php endforeach;?>
</select></th>
- <th><input type="submit" value="<?php echo $l->t('Create')?>"></input></th>
+ <th class="quota"></th>
+ <th><input type="submit" value="<?php echo $l->t('Create')?>" /></th>
</form></tr>
+ </thead>
+ <tbody>
<?php foreach($_["users"] as $user): ?>
<tr data-uid="<?php echo $user["name"] ?>">
<td class="name"><?php echo $user["name"]; ?></td>