New files

This commit is contained in:
dev-chiefworks
2023-04-30 20:25:08 -04:00
parent 5f6877e912
commit 7d830711b3
49 changed files with 1396 additions and 16 deletions
+29
View File
@@ -0,0 +1,29 @@
<?php
include 'phead.php';
include_once 'CONFIGURE.php';
include 'myfit_class.php';
$myfit_class = new myfit_class();
define('START_PASS_CHANGE', 100);
define('CONFIRM_PASS_PIN', 200);
define('CONFIRM_PASS_CHANGE', 300);
$data = [
'username' => 'ses66181+merms2433@gmail.com',
'reset_uuid' => '0b84822f-877c-4835-b42c-3ce8f801638e',
'random_text' => '486891',
'stage' => CONFIRM_PASS_PIN
];
$out = array();
$ret = $myfit_class->myfit_api("resetpass",$data,$out);
echo "<hr /> INPUT ";
var_dump($data);
echo "<hr />OUTPUT ";
var_dump($out);
$myfit_class->showOutResult($out);
echo highlight_string(file_get_contents(__FILE__));