diff options
| author | Paul Buetow <paul@buetow.org> | 2026-06-30 22:40:10 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-06-30 22:40:10 +0300 |
| commit | 651f762278d05f78ff78152d9616c17010aad6b2 (patch) | |
| tree | 1461d1696ebda5f20fd81afdeac0d187b2ff7faa | |
| parent | f03e1609ff438e6455bcd64de14dd4a447e8e6e5 (diff) | |
login page: drop the Register link (no-op without a database)
In Mode A (no DB) the register flow is a no-op: yc_register's body is
#ifdef DATABASE, so the registration form at register.html persists nothing
and is misleading. Remove the 'Register a new nick' link from index.html,
keeping the helpful note that guests log in without a password. (register.html
is left in place but no longer linked; the no-DB build has no registration.)
| -rw-r--r-- | ychat/html/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ychat/html/index.html b/ychat/html/index.html index 7d1f763..46194cc 100644 --- a/ychat/html/index.html +++ b/ychat/html/index.html @@ -29,7 +29,7 @@ <input type="submit" value="login" accesskey="s" /> </form> <div> - <a class="fancy" href="register.html">Register</a> a new nick If you don't want to register you may login without a password using an unregistered nick. + You may log in without a password using any (unregistered) nick. </div> <div class="footer"> <span class="signature">yChat is OpenSource - get it at <a class="fancy" target="_blank" href="http://www.yChat.org">http://www.yChat.org</a></span> |
