Game-Jaming/Backend/SigningUp.php

43 lines
798 B
PHP

<?php
use Backend\Models\Group;
use Backend\Models\Password;
use Backend\Models\GameJam;
session_start();
$groupName = "";
$errors = array();
if(isset($_POST['reg_group'])){
$password = New Password;
$password->password = password_hash($_POST['password'] ,PASSWORD_DEFAULT);
if(!$password->save()){
return;
}
$group = new Group();
$group->password()->associate($password);
$group->gameJam()->associate(GameJam::find($_POST['gameJamId']));
$group->groupName = $groupName = $_POST['groupName'];
$group->groupAmount = $_POST['groupAmount'];
$group->votes = 0;
if(!$group->save()){
return;
}
$_SESSION['groupName'] = $groupName;
$_SESSION['success'] = "You are now logged in";
header('location: index.php');
}