Files
Wrench-ApiTester/public/wrenchboard/verifyresetpasword.php
T
dev-chiefworks 38b38b1c8f fixnew
2023-09-30 11:49:57 -04:00

18 lines
440 B
PHP

<?php
include_once('def.php');
include 'session_read.php';
include('wrenchboard_class.php');
$wrenchboard = new wrenchboard_class();
$data = array(
"sessionid" => "DUMMY-CANNOT_BE_EMPTY" ,
"reset_link" => '092757d6f4c0c88b1fed606eb2f3b41dbef65792cab90698e13f51e8c81099c6',
"step" => 200,
'action'=>WRENCHBOARD_COMPLETE_PASSWORDRESET
);
$out = array();
$ret = $wrenchboard->wrenchboard_api($data,$out,'stepresetpass');
?>