summaryrefslogtreecommitdiffstats
path: root/settings/templates
diff options
context:
space:
mode:
authorFrank Karlitschek <frank@owncloud.org>2013-02-09 09:13:11 +0100
committerFrank Karlitschek <frank@owncloud.org>2013-02-09 09:13:11 +0100
commit9bd45b26a5db6d97ee58586aed50c12c8a34d8f9 (patch)
tree2ed61c9d664346e4ae914fdbef565dc12dd99344 /settings/templates
parentf097fade01aaf8942a02accc4c9ad1873cf08ef6 (diff)
downloadnextcloud-server-9bd45b26a5db6d97ee58586aed50c12c8a34d8f9.tar.gz
nextcloud-server-9bd45b26a5db6d97ee58586aed50c12c8a34d8f9.zip
add the buttons for the clients to the personal page.
Useful and prettier
Diffstat (limited to 'settings/templates')
-rw-r--r--settings/templates/personal.php31
1 files changed, 25 insertions, 6 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 6ccb607e632..078328442e3 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -8,12 +8,31 @@
<p id="quotatext"><?php echo $l->t('You have used <strong>%s</strong> of the available <strong>%s</strong>', array($_['usage'], $_['total_space']));?></p>
</div></div>
-<fieldset class="personalblock">
- <legend><strong><?php echo $l->t('Clients');?></strong></legend>
- <a class="button" href="<?php echo $_['clients']['desktop']; ?>" target="_blank"><?php echo $l->t('Download Desktop Clients');?></a>
- <a class="button" href="<?php echo $_['clients']['android']; ?>" target="_blank"><?php echo $l->t('Download Android Client');?></a>
- <a class="button" href="<?php echo $_['clients']['ios']; ?>" target="_blank"><?php echo $l->t('Download iOS Client');?></a>
-</fieldset>
+
+
+<div class="clientsbox">
+<h2><?php echo $l->t('Get the apps to sync your files');?></h2>
+<a href="<?php echo $_['clients']['desktop']; ?>">
+ <img src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" />
+</a>
+<a href="<?php echo $_['clients']['android']; ?>">
+ <img src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" />
+</a>
+<a href="<?php echo $_['clients']['ios']; ?>">
+ <img src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" />
+</a>
+</div>
+
+
+<?php
+if(OC_APP::isEnabled('firstrunwizard')) {
+?>
+
+ <center><a class="button" href="#" id="showWizard"><?php echo $l->t('Show First Run Wizard again');?></a></center>
+
+<?php
+}
+?>
<?php
if($_['passwordChangeSupported']) {