From 44b6019d8f9d1a2fdd65bfda8c68664f2412bcd3 Mon Sep 17 00:00:00 2001 From: Sam White Date: Sat, 11 Dec 2021 14:10:39 +0000 Subject: [PATCH] Implement downloading of CSV of members emails and link to members page from login success page. --- public_html/login.php | 3 ++- public_html/members.php | 19 ++++++++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/public_html/login.php b/public_html/login.php index 36c1b39..b6400a7 100644 --- a/public_html/login.php +++ b/public_html/login.php @@ -42,7 +42,8 @@ function content() { $uid = validate_login($errors, $_POST); if ($uid) { esc('Login successful!.'); - $_SESSION['user'] = $uid; + $_SESSION['user'] = $uid;?> +

Click >here to view the membership list.

+

Click >here to download a CSV + file containing the email addresses of all members.

+

Please note this is a work in progress and the membership records will be fully reconciled at some point.

-- 2.25.1