diff --git a/frontend/templates/404.html b/frontend/templates/404.html new file mode 100644 index 0000000..2d2c506 --- /dev/null +++ b/frontend/templates/404.html @@ -0,0 +1,471 @@ + + + + + + 404 - Page Not Found | ChatBot + + + + +
+
+
+
+
+
+ +
+
404
+ +

Oops! Page Not Found

+ +

+ The page you're looking for seems to have wandered off into the digital void. + Don't worry, even the best explorers sometimes take a wrong turn! +

+ +
+

🤔 What happened?

+

+ The requested URL was not found on this server. This could be due to a + mistyped URL, a moved page, or a link that's no longer valid. +

+
+ +
+

Here's what you can try:

+ +
+ +
+ + 🏠 Go Home + + + {% if current_user %} + + 📊 Dashboard + + {% else %} + + 🔐 Login + + {% endif %} + + + â†Šī¸ Go Back + +
+ +
+

🤖 ChatBot Application

+

+ You're currently using our ChatBot platform. If you were trying to access + a specific chat or feature, please navigate through the main menu or + contact our support team for assistance. +

+
+ + +
+ + + + \ No newline at end of file diff --git a/frontend/templates/change_password.html b/frontend/templates/change_password.html new file mode 100644 index 0000000..182a215 --- /dev/null +++ b/frontend/templates/change_password.html @@ -0,0 +1,358 @@ + + + + + + Change Password - ChatBot + + + +
+ + +
+

Change Password

+

Update your account password

+
+ + + {% with messages = get_flashed_messages(with_categories=true) %} + {% if messages %} + {% for category, message in messages %} +
+ {{ message }} +
+ {% endfor %} + {% endif %} + {% endwith %} + +
+

🔒 Security Notice

+

For your security, we require your current password to make changes. Your new password will be encrypted and stored securely.

+
+ +
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+

Password Requirements:

+
    +
  • At least 8 characters long
  • +
  • Contains at least one uppercase letter (A-Z)
  • +
  • Contains at least one lowercase letter (a-z)
  • +
  • Contains at least one number (0-9)
  • +
  • Contains at least one special character (!@#$%^&*)
  • +
+
+ +
+ + + Cancel + +
+
+
+ + + + \ No newline at end of file