2011-10-08 13:10:49 +02:00
|
|
|
<?php
|
|
|
|
/**
|
2012-02-22 16:04:17 +01:00
|
|
|
* Copyright (c) 2011 Marvin Thomas Rabe <mrabe@marvinrabe.de>
|
2011-10-08 13:10:49 +02:00
|
|
|
* Copyright (c) 2011 Arthur Schiwon <blizzz@arthur-schiwon.de>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
?>
|
2011-08-24 14:36:03 +02:00
|
|
|
<input type="hidden" id="bookmarkFilterTag" value="<?php if(isset($_GET['tag'])) echo htmlentities($_GET['tag']); ?>" />
|
2011-10-08 13:54:45 +02:00
|
|
|
<div id="controls">
|
2011-09-13 13:08:11 +02:00
|
|
|
<input type="hidden" id="bookmark_add_id" value="0" />
|
2012-02-22 23:22:17 +01:00
|
|
|
<input type="text" id="bookmark_add_url" placeholder="<?php echo $l->t('Address'); ?>" class="bookmarks_input" />
|
|
|
|
<input type="text" id="bookmark_add_title" placeholder="<?php echo $l->t('Title'); ?>" class="bookmarks_input" />
|
|
|
|
<input type="text" id="bookmark_add_tags" placeholder="<?php echo $l->t('Tags'); ?>" class="bookmarks_input" />
|
|
|
|
<input type="submit" value="<?php echo $l->t('Add bookmark'); ?>" id="bookmark_add_submit" />
|
2011-08-15 22:05:07 +02:00
|
|
|
</div>
|
|
|
|
<div class="bookmarks_list">
|
2012-02-20 02:18:27 +01:00
|
|
|
</div>
|
2012-02-22 23:58:38 +01:00
|
|
|
<div id="firstrun" style="display: none;">
|
2012-02-22 22:38:05 +01:00
|
|
|
<?php
|
2012-02-22 23:08:50 +01:00
|
|
|
echo $l->t('You have no bookmarks');
|
|
|
|
require_once('bookmarklet.php');
|
|
|
|
createBookmarklet();
|
2012-02-22 22:38:05 +01:00
|
|
|
?>
|
2012-02-20 02:18:27 +01:00
|
|
|
</div>
|