diff --git a/README.md b/README.md index f103109..8304664 100644 --- a/README.md +++ b/README.md @@ -141,12 +141,6 @@ The following security enhancements are planned for future releases: - Implement rate limiting for failed login attempts - Add IP-based blocking after multiple failed attempts -### Password Hashing -- [ ] Replace SHA-256 with Argon2 password hashing - - Argon2 is the winner of the Password Hashing Competition and provides better protection against various attacks - - Implement password migration strategy for existing accounts - - Update password verification logic to support both hash formats during transition - ### Authentication Methods - [ ] Add OAuth 2.0 support for admin authentication - Integrate with common providers (Google, GitHub, Microsoft) @@ -160,3 +154,10 @@ The following security enhancements are planned for future releases: - Automatically delete closed inquiries after 2 days - Allow reopening inquiries before deletion occurs - Provide visual indicators for closed inquiries in admin interface + +### Read-Only Links +- [ ] Implement read-only sharing links for inquiries + - Generate unique, cryptographically secure sharing links + - Allow users to create links that provide view-only access + - Set optional expiration times for sharing links + - Allow users to revoke sharing links at any time diff --git a/src/anonchat/templates/inquiry.html b/src/anonchat/templates/inquiry.html index 4ea2e50..9b341b5 100644 --- a/src/anonchat/templates/inquiry.html +++ b/src/anonchat/templates/inquiry.html @@ -51,11 +51,9 @@ {% endif %} - {% if not is_admin %} -
-

Please refresh the page to see new messages.

-
- {% endif %} +
+

Please refresh the page to see new messages.

+

{% if is_admin %}Respond as Admin{% else %}Reply{% endif %}