remove old readme
[atutor.git] / themes / simplified-desktop / admin / users / create.tmpl.php
1
2 <form method="post" action="<?php echo $_SERVER['PHP_SELF']; ?>" name="form">
3 <input type="hidden" name="form_password_hidden" value="" />
4 <input type="hidden" name="password_error" value="" />
5
6 <div class="input-form">
7         <div class="row">
8                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="login"><?php echo _AT('login_name'); ?></label><br />
9                 <input type="text" name="login" id="login" size="25" value="<?php echo htmlspecialchars($_POST['login']); ?>" />
10         </div>
11
12         <div class="row">
13                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="password"><?php echo _AT('password'); ?></label><br />
14                 <input type="password" name="password" id="password" size="25" />
15         </div>
16
17         <div class="row">
18                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="password2"><?php echo _AT('confirm_password'); ?></label><br />
19                 <input type="password" name="confirm_password" id="password2" size="25" />
20         </div>
21
22         <div class="row">
23                 <label for="real_name"><?php echo _AT('real_name'); ?></label><br />
24                 <input type="text" name="real_name" id="real_name" size="30" value="<?php echo htmlspecialchars($_POST['real_name']); ?>" />
25         </div>
26
27         <div class="row">
28                 <span class="required" title="<?php echo _AT('required_field'); ?>">*</span><label for="email"><?php echo _AT('email'); ?></label><br />
29                 <input type="text" name="email" id="email" size="25" value="<?php echo htmlspecialchars($_POST['email']); ?>" />
30         </div>
31
32         <div class="row">
33                 <?php echo _AT('privileges'); ?><br />
34                 <input type="checkbox" name="priv_admin" value="1" id="priv_admin" <?php if ($_POST['priv_admin']) { echo 'checked="checked"'; } ?> /><label for="priv_admin"><?php echo _AT('priv_admin_super'); ?></label><br /><br />
35
36         
37                 <?php foreach ($this->keys as $module_name): ?>
38                         <?php $module =& $this->module_list[$module_name]; ?>
39                         <?php if (!($module->getAdminPrivilege() > 1)) { continue; } ?>
40                                 <input type="checkbox" name="privs[]" value="<?php echo $module->getAdminPrivilege(); ?>" id="priv_<?php echo $module->getAdminPrivilege(); ?>" <?php if (query_bit($_POST['privs'], $module->getAdminPrivilege())) { echo 'checked="checked"'; }  ?> /><label for="priv_<?php echo $module->getAdminPrivilege(); ?>"><?php echo $module->getName() ?></label><br />
41                 <?php endforeach; ?>
42         </div>
43
44         <div class="row buttons">
45                 <input type="submit" name="submit" value="<?php echo _AT('save'); ?>" accesskey="s" onclick="return encrypt_password();" />
46                 <input type="submit" name="cancel" value="<?php echo _AT('cancel'); ?>" />
47         </div>
48 </div>
49 </form>