mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
8 lines
240 B
PHP
8 lines
240 B
PHP
<?php
|
|
defined('FROM_POST_HANDLER') || die("Direct file access is not allowed");
|
|
|
|
$name = sanitizeInput($_POST['name']);
|
|
$email = sanitizeInput($_POST['email']);
|
|
$role = intval($_POST['role']);
|
|
$force_mfa = intval($_POST['force_mfa'] ?? 0);
|