move code up one directory
[atutor.git] / themes / default / social / edit_profile / edit_contact.tmpl.php
1 <?php
2         global $addslashes;
3
4         //escape all strings
5         $con_name       = AT_print($this->con_name, 'input.text');
6         $con_phone      = AT_print($this->con_phone, 'input.text');
7         $con_email      = AT_print($this->con_email, 'input.text');
8         $con_address    = AT_print($this->con_address, 'input.text');
9
10 ?>
11
12 <div class="headingbox"><h3><?php if($_GET['id']){echo _AT('edit_contact');}else{echo  _AT('add_new_contact');}?></h3></div>
13 <div class="contentbox">
14 <form method="post" action="<?php echo url_rewrite(AT_SOCIAL_BASENAME.'edit_profile.php'); ?>">
15         <dl id="public-profile">
16                 <dt><label for="con_name"><?php echo _AT('name'); ?></label></dt>
17                 <dd><input type="text" id="con_name" name="con_name" value="<?php echo $con_name; ?>" /></dd>
18
19                 <dt><label for="con_phone"><?php echo _AT('phone'); ?></label></dt>
20                 <dd><input type="text" id="con_phone"  name="con_phone" value="<?php echo $con_phone; ?>" /></dd>
21                 
22                 <dt><label for="con_email"><?php echo _AT('email'); ?></label></dt>
23                 <dd><input type="text" id="con_email"  name="con_email" value="<?php echo $con_email; ?>" /></dd>
24
25                 <dt><label for="con_address"><?php echo _AT('street_address'); ?></label></dt>  
26                 <dd><textarea name="con_address" id="con_address" cols="40" rows="5"><?php echo $con_address; ?></textarea></dd>
27                 </dl>
28                 <input type="hidden" name="id" value="<?php echo $this->id; ?>" />
29                 <?php if($_GET['id']){ ?>
30                 <input type="hidden" name="edit" value="contact" />
31                 <?php }else { ?>
32                 <input type="hidden" name="add" value="contact" />
33                 <?php } ?>
34         
35                 <input type="submit" name="submit" class="button" value="<?php echo _AT('save'); ?>" />
36                 <input type="submit" name="cancel" class="button" value="<?php echo _AT('cancel'); ?>" />
37         
38 </form>
39 </div>