Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2016-06-07 20:09:49 +0300
committerLukas Reschke <lukas@owncloud.com>2016-06-27 11:26:22 +0300
commit363b76faee862e1cccd826d25a0f208ef656e1bc (patch)
treebd6aedd5bc65e5bd331e57fe655bdf7b471de59d /apps/theming/templates
parent20d250a674b1d89cafb324cd7157b77bedc2e5fd (diff)
basic information architecture for the theming app
Diffstat (limited to 'apps/theming/templates')
-rw-r--r--apps/theming/templates/settings-admin.php20
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>