summaryrefslogtreecommitdiffstats
path: root/templates/part.folderdialog.php
blob: fb1a819afaa3c258cce93c6189cd97d4bc7bc29f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div id="addfolder_dialog" title="<?php echo $l->t("Add Folder"); ?>">
<table width="100%" style="border: 0;">
<tr>
	<td>Add new folder</td>
	<td>
		<div class="add_parentfolder">
			<button id="dropdownBtn" onclick="News.DropDownMenu.dropdown(this)">
			    <?php echo $l->t('Subscriptions'); ?>
			</button>
			<input id="inputfolderid" type="hidden" name="folderid" value="0" />
			<ul class="menu" id="dropdownmenu">
				<?php echo $this->inc("part.folderlist"); ?>
			</ul>
		</div>
	</td>
</tr>
<tr>
	<td><input type="text" id="folder_add_name" placeholder="<?php echo $l->t('Folder name'); ?>" class="news_input" /></td>
	<td><input type="submit" value="<?php echo $l->t('Add folder'); ?>" onclick="News.Folder.submit(this)" id="folder_add_submit" /></td>
</tr>
</table>