diff options
author | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 00:44:51 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <JanCBorchardt@fsfe.org> | 2011-04-17 00:45:22 +0200 |
commit | 7de3ecfe5f5e7eebe88b5eb7027abfa0c73898cd (patch) | |
tree | 92bdd1ab49fd964c7debc28f2248c94e77530c4e /settings/templates/index.php | |
parent | 23717b74c7a7cda5c5cb5d480b5feb9c8c5a4ec8 (diff) | |
download | nextcloud-server-7de3ecfe5f5e7eebe88b5eb7027abfa0c73898cd.tar.gz nextcloud-server-7de3ecfe5f5e7eebe88b5eb7027abfa0c73898cd.zip |
away with the h1, in with the good stuff
Diffstat (limited to 'settings/templates/index.php')
-rw-r--r-- | settings/templates/index.php | 34 |
1 files changed, 27 insertions, 7 deletions
diff --git a/settings/templates/index.php b/settings/templates/index.php index 106d313c014..910437fefc9 100644 --- a/settings/templates/index.php +++ b/settings/templates/index.php @@ -1,8 +1,28 @@ -<?php -/* - * Template for settings page - */ -?> -<h1>Settings</h1> +<form id="quota"> + <fieldset> + <legend>Account information</legend> + <div id="quota_indicator"><div style="width:72%;"> </div></div> + <p>You're currently using 72% (7.2GB) of your 10GB space.</p> + </fieldset> +</form> -Welcome to the settings! Bla bla bla
\ No newline at end of file +<form id="user_settings"> + <fieldset> + <legend>User settings</legend> + <p> + <label for="email">Email :</label> + <input type="text" id="email" name="email" value="user@example.net" /> + </p> + <p> + <label for="pass1">New password :</label> + <input type="password" id="pass1" name="pass1" /> + </p> + <p> + <label for="pass2">Confirm new password :</label> + <input type="password" id="pass2" name="pass2" /> + </p> + <p class="form_footer"> + <input type="submit" value="Save" /> + </p> + </fieldset> +</form> |