remove old readme
[atutor.git] / docs / themes / mobile / admin / system_preferences / edit_feed.tmpl.php
1 <?php global $stripslashes;?>
2 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="get" name="form">
3         <input type="hidden" name="fid" value="<?php echo $this->feed_id; ?>" />
4         <div class="input-form" style="width:95%">
5                 <div class="row">
6                         <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="title"><?php echo _AT('title'); ?></label><br />
7                         <input id="title" name="title" type="text" size="40" maxlength="255" value="<?php echo $stripslashes(htmlspecialchars($_GET['title'])); ?>" /><br />
8                 </div>
9
10                 <div class="row">
11                         <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="url"><?php echo _AT('url'); ?></label><br />
12                         <input id="url" name="url" type="text" size="40" maxlength="255" value="<?php echo $stripslashes(htmlspecialchars($_GET['url'])); ?>" /><br />
13                 </div>
14
15                 <div class="row buttons">
16                         <input type="submit" name="submit" value=" <?php echo _AT('save'); ?> " accesskey="s" />
17                         <input type="submit" name="cancel" value=" <?php echo _AT('cancel'); ?> " />
18                 </div>
19         </div>
20 </form>