From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-1.2 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.6 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1682638559; bh=OnWz1eVnmaYhc7s7sAr99tGMkjli0HGfzbcfDkERp6E=; h=From:To:Cc:Subject:Date; b=ZBU27XUysshbEwF/yRqlxOhMz+TrfdREoRHCoC+UK1Fr1NpR4egwKkyFLPe3/6VhA EVUEzygCnPx4va55Y2M9EV62WWluJeQop+GtWTj4TyTFmsepT2FXGrHO7XTE7g2N6e xYaisZ9kxb9IzFxyivzPGAz61EMlvtdtO5ph2cK1eQuQ0aHkYfqzfsdC/ZevgTV5rH DZJU2yFnwSAK70JMH/fSJaxUBeDDOQYW4+W58b23UOBQ10/c5980fCpBGuQr5yqp4s 6xvzEIjfR1jlmS70x23cquLg8+8AyHk6iD1iZ7VW96Pw1CBFo6HdH660CY7NXrOvhj 0p5xXRAfh1fWQ== Received: from localhost.localdomain (unknown [182.1.23.2]) by gnuweeb.org (Postfix) with ESMTPSA id B3319245A07; Fri, 28 Apr 2023 06:35:56 +0700 (WIB) From: Memet Zx To: Ammar Faizi Cc: Memet Zx , GNU/Weeb Mailing List , Memet Zx Subject: [PATCH gwspamd] gwspamd: web: Add new layout profile with demo chart Date: Fri, 28 Apr 2023 06:35:50 +0700 Message-Id: <20230427233550.286187-1-zxce3@gnuweeb.org> X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: This commit adds a new layout profile with a demo chart to display the difference between spam and non-spam messages. We added a script tag for a CDN to enable the chart. This improves the user experience. Signed-off-by: Memet Zx --- web/views/pages/profile.php | 113 +++++++++++++++++++++++++++--------- 1 file changed, 84 insertions(+), 29 deletions(-) diff --git a/web/views/pages/profile.php b/web/views/pages/profile.php index a67ce79..e54dce0 100644 --- a/web/views/pages/profile.php +++ b/web/views/pages/profile.php @@ -3,37 +3,92 @@ $opt["title"] = $u["full_name"]; ?> -
+
" alt=" Images"> -

- Edit Profile +

+ + + + + +

-
- - - - - - - - - - - - - - - - - - - - - - - -
User ID
First Name
Last Name
User Name
Email
+
+
+
+

+ Info +

+ + + + + + + + + + + + + + + + + + + + + + + +
User ID
First Name
Last Name
User Name
Email
+ Edit Profile +
+
+
+
+

+ Stats +

+ +
+ +
+
+
+
+
+
+
+
-
\ No newline at end of file + base-commit: 961deae39a099913ca8566e7fec8f3d3f9c4b5f2 -- Memet Zx