17ffdcfe7f5380247ad8d859bb55fbe475a3d4b5
[atutor.git] / docs / themes / default15 / confirmmessage.tmpl.php
1 <?php  
2 /*
3  * @author Jacek Materna
4  *
5  *      One Savant variable: $item which is the processed ouput message content according to lang spec.
6  */
7  
8  global $_base_href;
9  
10 // header
11 ?>
12
13 <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>">
14 <?php if(isset($this->hidden_vars)): ?>
15         <?php echo $this->hidden_vars; ?>
16 <?php endif; ?>
17
18 <div class="input-form">
19         <div class="row">
20                 <?php if (is_array($this->item)) : ?>
21                         <?php foreach($this->item as $e) : ?>
22                                 <p><?php echo $e; ?></p>
23                         <?php endforeach; ?>
24                 <?php endif; ?>
25         </div>
26
27         <div class="row buttons">
28                 <input type="submit" name="submit_yes" value="<?php echo _AT('submit_yes'); ?>" /> 
29                 <input type="submit" name="submit_no" value="<?php echo _AT('submit_no'); ?>" />
30         </div>
31 </div>
32 </form>