summaryrefslogtreecommitdiffstats
path: root/settings/templates/personal.php
diff options
context:
space:
mode:
authorThomas Mueller <thomas.mueller@tmit.eu>2013-02-11 21:42:27 +0100
committerThomas Mueller <thomas.mueller@tmit.eu>2013-02-11 21:42:27 +0100
commit037fcde1334d7b4d2bdeaaad0a71adc692b27ff8 (patch)
tree6f10b1a8d54cfea8cc3adf343de0bbf0f115f3d2 /settings/templates/personal.php
parentf58ed7a509da54fcd29e21dc6fc75528822157a4 (diff)
parent58e57151e51a02788377f761b183c15cd03b0ef0 (diff)
downloadnextcloud-server-037fcde1334d7b4d2bdeaaad0a71adc692b27ff8.tar.gz
nextcloud-server-037fcde1334d7b4d2bdeaaad0a71adc692b27ff8.zip
Merge branch 'master' into fixing-1424-master
Diffstat (limited to 'settings/templates/personal.php')
-rw-r--r--settings/templates/personal.php29
1 files changed, 21 insertions, 8 deletions
diff --git a/settings/templates/personal.php b/settings/templates/personal.php
index 398e65c0086..6b3e8acbf02 100644
--- a/settings/templates/personal.php
+++ b/settings/templates/personal.php
@@ -8,12 +8,25 @@
<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']; ?>" target="_blank">
+ <img src="<?php echo OCP\Util::imagePath('core', 'desktopapp.png'); ?>" />
+ </a>
+ <a href="<?php echo $_['clients']['android']; ?>" target="_blank">
+ <img src="<?php echo OCP\Util::imagePath('core', 'googleplay.png'); ?>" />
+ </a>
+ <a href="<?php echo $_['clients']['ios']; ?>" target="_blank">
+ <img src="<?php echo OCP\Util::imagePath('core', 'appstore.png'); ?>" />
+ </a>
+ <?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 }?>
+</div>
+
+
<?php
if($_['passwordChangeSupported']) {
@@ -24,8 +37,8 @@ if($_['passwordChangeSupported']) {
<div id="passwordchanged"><?php echo $l->t('Your password was changed');?></div>
<div id="passworderror"><?php echo $l->t('Unable to change your password');?></div>
<input type="password" id="pass1" name="oldpassword" placeholder="<?php echo $l->t('Current password');?>" />
- <input type="password" id="pass2" name="password" placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#show" />
- <input type="checkbox" id="show" name="show" /><label for="show"> <?php echo $l->t('show');?></label>
+ <input type="password" id="pass2" name="personal-password" placeholder="<?php echo $l->t('New password');?>" data-typetoggle="#personal-show" />
+ <input type="checkbox" id="personal-show" name="show" /><label for="personal-show"></label>
<input id="passwordbutton" type="submit" value="<?php echo $l->t('Change password');?>" />
</fieldset>
</form>