shopping-list/php/edit-user.php

27 lines
514 B
PHP
Raw Normal View History

<?php
include $_SESSION["docroot"].'/php/classes.user.php';
$user = new user;
2018-11-20 13:53:17 +01:00
if($_GET["function"]!="new"){
2018-11-09 15:58:00 +01:00
$user->get_info($_COOKIE["token"]);
}
2018-11-20 13:53:17 +01:00
2018-11-20 09:59:59 +01:00
switch ($_GET["function"]) {
case 'change-pw':
$user->change_password($_POST["current"], $_POST["new"]);
break;
2019-05-19 18:37:00 +02:00
case 'change-theme':
$user->change_theme($_POST["theme"]);
break;
2018-11-20 13:53:17 +01:00
case 'new':
2018-11-09 15:58:00 +01:00
$user->new($_POST["username"], $_POST["passwd"]);
break;
default:
// code...
break;
}
?>