remove old readme
[atutor.git] / themes / default / 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 $this->button_yes_text; ?>" class="button"/> 
29 <?php if(!$this->hide_button_no): ?>
30                 <input type="submit" name="submit_no" value="<?php echo $this->button_no_text; ?>"  class="button"/>
31 <?php endif; ?>
32         </div>
33 </div>
34 </form>