Check-in [c15ec20d5a]
Not logged in
Overview

SHA1 Hash:c15ec20d5a8fb716d1d5cb2d2f96de01c25c7001
Date: 2009-08-12 17:35:02
User: drh
Comment:Rephrasing the text of the Login page.
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/login.c from [5c89b898ce] to [4d8ed5462e].

@@ -228,26 +228,26 @@
   @   <td></td>
   @   <td><input type="submit" name="in" value="Login"></td>
   @ </tr>
   @ </table>
   if( g.zLogin==0 ){
-    @ <p>To login
+    @ <p>Enter
   }else{
     @ <p>You are currently logged in as <b>%h(g.zLogin)</b></p>
-    @ <p>To change your login to a different user
-  }
-  @ enter the user-id and password at the left and press the
+    @ <p>To change your login to a different user, enter
+  }
+  @ your user-id and password at the left and press the
   @ "Login" button.  Your user name will be stored in a browser cookie.
   @ You must configure your web browser to accept cookies in order for
   @ the login to take.</p>
   if( zAnonPw ){
     unsigned int uSeed = captcha_seed();
     char *zCaptcha = captcha_render(captcha_decode(uSeed));
 
     @ <input type="hidden" name="cs" value="%u(uSeed)">
-    @ <p>To login as user <b>anonymous</b> use the following
-    @ 8-character hexadecimal password:</p>
+    @ <p>Visitors may enter <b>anonymous</b> as the user-ID with
+    @ the 8-character hexadecimal password shown below:</p>
     @ <center><table border="1" cellpadding="10"><tr><td><pre>
     @ %s(zCaptcha)
     @ </pre></td></tr></table></center>
     free(zCaptcha);
   }