]> git.mxchange.org Git - friendica-addons.git/blob - jappixmini/jappix/php/form-users.php
Merge branch '3.6-release'
[friendica-addons.git] / jappixmini / jappix / php / form-users.php
1 <?php
2
3 /*
4
5 Jappix - An open social platform
6 This is the user add form (install & manager)
7
8 -------------------------------------------------
9
10 License: AGPL
11 Author: Vanaryon
12 Last revision: 08/05/11
13
14 */
15
16 // Someone is trying to hack us?
17 if(!defined('JAPPIX_BASE'))
18         exit;
19
20 ?>
21
22 <fieldset>
23         <legend><?php _e("New"); ?></legend>
24         
25         <label for="user_name"><?php _e("User"); ?></label><input id="user_name" class="icon <?php echo($form_parent); ?>-images" type="text" name="user_name" value="<?php echo(htmlspecialchars($user_name)); ?>" maxlength="30" />
26         
27         <label for="user_password"><?php _e("Password"); ?></label><input id="user_password" class="icon <?php echo($form_parent); ?>-images" type="password" name="user_password" maxlength="40" />
28         
29         <label for="user_repassword"><?php _e("Confirm"); ?></label><input id="user_repassword" class="icon <?php echo($form_parent); ?>-images" type="password" name="user_repassword" maxlength="40" />
30 </fieldset>