diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2016-06-07 19:09:49 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2016-06-27 10:26:22 +0200 |
commit | 363b76faee862e1cccd826d25a0f208ef656e1bc (patch) | |
tree | bd6aedd5bc65e5bd331e57fe655bdf7b471de59d /apps/theming/templates | |
parent | 20d250a674b1d89cafb324cd7157b77bedc2e5fd (diff) | |
download | nextcloud-server-363b76faee862e1cccd826d25a0f208ef656e1bc.tar.gz nextcloud-server-363b76faee862e1cccd826d25a0f208ef656e1bc.zip |
basic information architecture for the theming app
Diffstat (limited to 'apps/theming/templates')
-rw-r--r-- | apps/theming/templates/settings-admin.php | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/apps/theming/templates/settings-admin.php b/apps/theming/templates/settings-admin.php index 4177f59d071..82d21751abc 100644 --- a/apps/theming/templates/settings-admin.php +++ b/apps/theming/templates/settings-admin.php @@ -4,8 +4,22 @@ script('theming', 'settings-admin'); style('theming', 'settings-admin') ?> -<div id="ncTheming" class="section"> +<div id="theming" class="section"> <h2><?php p($l->t('Theming')); ?></h2> - Hello World -</div> + <p> + <input class="theming-name" type="text" placeholder="<?php p($l->t('Name')); ?>"></input> + </p> + <p> + <input class="theming-address" type="text" placeholder="<?php p($l->t('Web address https://…')); ?>"></input> + </p> + <p> + <input class="theming-slogan" type="text" placeholder="<?php p($l->t('Slogan')); ?>"></input> + </p> + <p> + <input class="theming-color" type="text" placeholder="<?php p($l->t('Color #0082c9')); ?>"></input> + </p> + <p> + <input class="theming-logo" type="text" placeholder="<?php p($l->t('Logo')); ?>"></input> + </p> +</div> |