Changeset 254 for trunk/wifidog-auth/wifidog/user_management/index.php
- Timestamp:
- 10/28/04 21:17:27 (9 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog-auth/wifidog/user_management/index.php
r227 r254 69 69 $email = ''; 70 70 } 71 echo "<h 1>"._('Register a free account with')." ".HOTSPOT_NETWORK_NAME."</h1>\n";71 echo "<h3>"._('Register a free account with')." ".HOTSPOT_NETWORK_NAME."</h3>\n"; 72 72 echo "<form method='post'>\n"; 73 echo " Your desired username: <input type='text' name='username' value='$username'><br>\n";74 echo " Your email address: <input type='text' name='email' value='$email'><br>\n";75 echo " Your password: <input type='password' name='pass' value='$pass'><br>\n";76 echo " Your password(again): <input type='password' name='pass_again' value='$pass_again'><br>\n";77 echo "< input type='hidden' name='action' value='create_new_account'><br>\n";78 echo "<input type='submit'> \n";73 echo "<p>Your desired username: <input type='text' name='username' value='$username'></p>\n"; 74 echo "<p>Your email address: <input type='text' name='email' value='$email'> The email MUST be valid. You will have to click on the link you will receive by email before your account is validated.</p>\n"; 75 echo "<p>Your password: <input type='password' name='pass' value='$pass'></p>\n"; 76 echo "<p>Your password(again): <input type='password' name='pass_again' value='$pass_again'></p>\n"; 77 echo "<p><input type='hidden' name='action' value='create_new_account'>\n"; 78 echo "<input type='submit'></p>\n"; 79 79 echo "</form>\n"; 80 80 } … … 90 90 $username = ''; 91 91 } 92 echo "<h 1>"._('Re-send validation email')."</h1>\n";92 echo "<h3>"._('Re-send validation email')."</h3>\n"; 93 93 echo "<form method='post'>\n"; 94 94 echo "Your username: <input type='text' name='username' value='$username'><br>\n"; … … 180 180 $new_pass_again = ''; 181 181 } 182 echo "<h 1>"._('Change password')."</h1>\n";182 echo "<h3>"._('Change password')."</h3>\n"; 183 183 echo "<form method='post'>\n"; 184 184 echo "Your username: <input type='text' name='username' value='$username'><br>\n"; … … 201 201 $email = ''; 202 202 } 203 echo "<h 1>"._('Lost username')."</h1>\n";203 echo "<h3>"._('Lost username')."</h3>\n"; 204 204 echo "<form method='post'>\n"; 205 205 echo "<p>"._('Please enter your email address:')." <input type='text' name='email' value='$email'></p>\n"; … … 258 258 } 259 259 260 echo "<h 1>"._('Lost password')."</h1>\n";260 echo "<h3>"._('Lost password')."</h3>\n"; 261 261 echo "<form method='post'>\n"; 262 262 echo "<p>"._('Please enter either your username or your email:')."</p>\n"; … … 322 322 Password: $new_passord 323 323 324 To protect your account, it is recommended that you change your password immediately. 325 326 Thank you, 324 Have a nice day, 327 325 328 326 The Team"; … … 330 328 331 329 mail($email, $subject, $body, $from); 332 echo "<p>"._(' Yourpassword has been mailed to you.')."</p>\n";330 echo "<p>"._('A new password has been mailed to you.')."</p>\n"; 333 331 } 334 332 } … … 337 335 338 336 $style = new Style(); 339 echo $style->GetHeader(HOTSPOT_NETWORK_NAME.' New account registration');337 echo $style->GetHeader(HOTSPOT_NETWORK_NAME.' user management'); 340 338 $showform=true; 339 echo "<div id='head'><h1>".HOTSPOT_NETWORK_NAME." user management</h1></div>\n"; 341 340 echo "<div id='navLeft'>\n"; 342 341 echo get_user_management_menu(); … … 346 345 if(empty($_REQUEST['action'])) 347 346 { 348 347 echo _("<h3>Inscription</h3> 348 <p>Pour vous connecter aux points d'acc�s ".HOTSPOT_NETWORK_NAME.", vous devez utiliser un nom d'utilisateur et un mot de passe.</p> 349 <p>Les comptes sont totalement gratuits pour tous ceux qui en font la demande.</p> 350 <p>Pour faire la demande d'un compte gratuit, veuillez choisir 'Create new account' dans le menu de gauche.</p> 351 <h3>Sign up</h3> 352 <p>".HOTSPOT_NETWORK_NAME." hotspots require you have a login and a password to utilize them.</p> 353 <p>Accounts are given absolutely free to anyone who requests them.</p> 354 <p>To request a free account, please choose 'Create new account' in the left menu.</p>"); 349 355 } 350 356 else
