13 lines
769 B
HTML
13 lines
769 B
HTML
<div id="quickAddInfoPanel" class="quickAdd" style="display:none;">
|
|
<h2><?php echo _("Quick Task Creation") ?></h2>
|
|
<form method="post" action="quick.php">
|
|
<?php echo Horde_Util::formInput() ?>
|
|
<p><?php echo _("Enter one task per line. Create child tasks by indenting them below their parent task. Include due dates like \"laundry tomorrow\" or \"get dry cleaning next Thursday\". Tags may be added by prefixing them with the \"#\" character.") ?></p>
|
|
<textarea name="quickText" id="quickText"></textarea>
|
|
<p>
|
|
<input type="submit" class="horde-default" value="<?php echo _("Create") ?>" />
|
|
<input type="button" class="horde-cancel" onclick="RedBox.close();RedBox.getWindow().down().remove();" value="<?php echo _("Cancel") ?>" />
|
|
</p>
|
|
</form>
|
|
</div>
|