database And dertory update

This commit is contained in:
2021-03-08 13:01:01 +01:00
parent 858b065a8e
commit 4eb443cd1c
15 changed files with 59 additions and 13 deletions
+44
View File
@@ -0,0 +1,44 @@
<?php
require "../../../bootstrap.php";
use Backend\Models\Group;
use Backend\Models\Password;
use Backend\Models\GameJam;
session_start();
$groupName = "";
$errors = array();
if(isset($_POST['reg_group'])){
$group = new Group();
$group->gameJam()->associate(GameJam::find($_POST['gameJamId']));
$group->groupName = $groupName = $_POST['groupName'];
$group->groupAmount = $_POST['groupAmount'];
if(!$group->save()){
return;
}
$password = New Password();
$password->group()->associate($group);
$password->password = password_hash($_POST['password'] ,PASSWORD_DEFAULT);
if(!$password->save()){
return;
}
$_SESSION['groupName'] = $groupName;
$_SESSION['groupId'] = $group->id;
$_SESSION['success'] = "You are now logged in";
header('location: index.php');
}