diff --git a/foftickets.js b/foftickets.js index 9baa922..e469e05 100644 --- a/foftickets.js +++ b/foftickets.js @@ -34,6 +34,8 @@ const QRSalt ="!SaltyMagic5392370662"; // + Turn ticket use on/off from Settings (Admin) // + Turn email on/off from Settings (Admin) // + Magic-link Login System +// Create Account (User) +// Change Password (User) // Deactivate individual magic links (User) // Deactivate individual magic links (Admin) // See how much each camp/ticket has paid (Admin) @@ -128,8 +130,8 @@ function InitDatabase() { for (const key in users ) delete users[key]; for (const key in tickets) delete tickets[key]; for (const key in camps ) delete camps[key]; - users["teppy@egenesis.com" ]= { password: hashPW("x6321872X.1"), superuser:true, linksalt:"" }; - users["fallsonfire@gmail.com"]= { password: hashPW("indiantreeonfire"), superuser:false, linksalt:"" }; + users["teppy@egenesis.com" ]= { password: hashPW("x6321872X.1"), superuser:true, linksalt:"" }; + users["ginachen94@gmail.com" ]= { password: hashPW("indiantreeonfire"),superuser:true, linksalt:"" }; } InitDatabase();