move code up one directory
[atutor.git] / themes / default / login.tmpl.php
1 <?php require(AT_INCLUDE_PATH.'header.inc.php'); 
2
3
4 ?>
5
6 <script language="JavaScript" src="sha-1factory.js" type="text/javascript"></script>
7
8 <script type="text/javascript">
9 /* 
10  * Encrypt login password with sha1
11  */
12 function encrypt_password() {
13         document.form.form_password_hidden.value = hex_sha1(hex_sha1(document.form.form_password.value) + "<?php echo $_SESSION['token']; ?>");
14         document.form.form_password.value = "";
15         return true;
16 }
17
18 </script>
19 <div class="input-form">
20         <div class="column" style="margin-top:0;">
21                 <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="form">
22                 <input type="hidden" name="form_login_action" value="true" />
23                 <input type="hidden" name="form_course_id" value="<?php echo $this->form_course_id; ?>" />
24                 <input type="hidden" name="form_password_hidden" value="" />
25                 <input type="hidden" name="p" value="<?php echo urlencode($_GET['p']);?>" />
26
27                         <fieldset class="group_form"><legend class="group_form"><?php echo _AT('returning_user') ;?></legend>
28                         <p><?php echo _AT('login_text') ;?></p>
29                                 <?php if ($_GET['course']): ?>
30                                         <div class="row">
31                                                 <h3><?php echo _AT('login'). ' ' . $this->title; ?></h3>
32                                         </div>
33                                 <?php endif;?>
34
35                                 <label for="login"><?php echo _AT('login_name_or_email'); ?></label><br />
36                                 <input type="text" name="form_login" size="50" style="max-width: 80%; width: 80%;" id="login" /><br />
37
38                                 <label for="pass"><?php echo _AT('password'); ?></label><br />
39                                 <input type="password" class="formfield" name="form_password" style="max-width: 80%; width: 80%;" id="pass" />
40                                 <br /><br />
41                                 <input type="submit" name="submit" value="<?php echo _AT('login'); ?>" class="button" onclick="return encrypt_password();" /> 
42                         </fieldset>                     
43                 </form>
44         </div>
45
46 <?php
47 if($_config['allow_registration'] ==1){
48 ?>
49         <div class="column" style="margin-top:0;">
50                 <form action="registration.php" method="get">
51
52                         <fieldset class="group_form"><legend class="group_form"><?php echo _AT('new_user') ;?></legend>
53                         <p><?php echo _AT('registration_text'); ?></p>
54
55                         <?php if (defined('AT_EMAIL_CONFIRMATION') && AT_EMAIL_CONFIRMATION): ?>
56                                 <p><?php echo _AT('confirm_account_text'); ?></p>
57                         <?php endif; ?>
58                         <div style="width: 20%;margin-left:auto; margin-right:auto;margin-bottom:.6em;padding:.5em;">
59                         <br /><br />
60                         <input type="submit" name="register" value="<?php echo _AT('register'); ?>" class="button" />
61                         </div>
62                         </fieldset>
63                 </form>
64         </div>
65
66 <?php } ?>
67
68 <br style="clear:both;" />
69 </div>
70 <?php require(AT_INCLUDE_PATH.'footer.inc.php'); ?>