here is my form :
<form action="Register.php" method="POST">
<input type="text" placeholder="Username" name="Username" >     
<input type="Password" placeholder="Password" name="Password">
<input type="Password" placeholder="Confirm Password" name="Confirm_Password">
<input type="submit">
 </form>
And here is the block that i'm having trouble with
if(!empty ($_POST['Username']) && !empty($_POST['Password'])); 
$sql ="INSERT INTO users (Username,Password) values (:Username, :Password)";
$stmt= $conn->prepare ($sql);
$stmt->bindParam (':Username', $_POST ['Username']);
$stmt->bindValue(':Password', password_hash($_POST ['Password'], PASSWORD_BCRYPT));
if ($stmt-> execute()  ):
    die('success');
    else: 
Please help ?
