summaryrefslogtreecommitdiffstats
path: root/apps/bookmarks/templates
diff options
context:
space:
mode:
authorArthur Schiwon <blizzz@arthur-schiwon.de>2011-08-15 22:05:07 +0200
committerArthur Schiwon <blizzz@arthur-schiwon.de>2011-08-15 22:05:07 +0200
commit5608aaee8a8bbf913f4abb665f18fbe510da7214 (patch)
treef704a1657117af202001ddcc71a9d3ad0df338ad /apps/bookmarks/templates
parent523b0966d22d0fc149ca64afb32995a0eb29a6d3 (diff)
downloadnextcloud-server-5608aaee8a8bbf913f4abb665f18fbe510da7214.tar.gz
nextcloud-server-5608aaee8a8bbf913f4abb665f18fbe510da7214.zip
initial commit of Bookmarks App
Diffstat (limited to 'apps/bookmarks/templates')
-rw-r--r--apps/bookmarks/templates/list.php18
1 files changed, 18 insertions, 0 deletions
diff --git a/apps/bookmarks/templates/list.php b/apps/bookmarks/templates/list.php
new file mode 100644
index 00000000000..278a0db5249
--- /dev/null
+++ b/apps/bookmarks/templates/list.php
@@ -0,0 +1,18 @@
+<input type="hidden" id="bookmarkFilterTag" value="<?php echo htmlentities($_GET['tag']); ?>" />
+<h2 class="bookmarks_headline"><?php echo isset($_GET["tag"]) ? 'Bookmarks with tag: ' . urldecode($_GET["tag"]) : 'All bookmarks'; ?></h2>
+<div class="bookmarks_menu">
+ <input type="button" class="bookmarks_addBtn" value="Add Bookmark" />
+</div>
+<div class="bookmarks_add">
+ <p><label class="bookmarks_label">URL: </label><input type="text" id="bookmark_add_url" class="bookmarks_input" /></p>
+ <p><label class="bookmarks_label">Title: </label><input type="text" id="bookmark_add_title" class="bookmarks_input" /></p>
+ <p><label class="bookmarks_label">Description: </label><input type="text" id="bookmark_add_description" class="bookmarks_input" /></p>
+ <p><label class="bookmarks_label">Tags:</label><input type="text" id="bookmark_add_tags" class="bookmarks_input" /></p>
+ <p><label class="bookmarks_label"></label><input type="submit" id="bookmark_add_submit" /></p>
+</div>
+<div class="bookmarks_list">
+ <noscript>
+ JavaScript is needed to display your Bookmarks
+ </noscript>
+ You have no bookmarks
+</div> \ No newline at end of file