From 02d313cb73f4f25a905483615ba3e849c98ffb35 Mon Sep 17 00:00:00 2001 From: Robbie Antenesse Date: Tue, 1 Dec 2015 18:01:52 -0700 Subject: [PATCH] Started on password reset. --- php/functions.php | 2 ++ php/password_reset_validation.php | 38 +++++++++++++++++++++++++++++++ php/random_string.php | 12 ++++++++++ 3 files changed, 52 insertions(+) create mode 100644 php/password_reset_validation.php create mode 100644 php/random_string.php diff --git a/php/functions.php b/php/functions.php index 377b97b..4dcdee9 100644 --- a/php/functions.php +++ b/php/functions.php @@ -3,6 +3,8 @@ require_once(SITE_LOCATION . '/php/helpers.php'); require_once(SITE_LOCATION . '/php/plugins/easycrypt.php'); +require_once(SITE_LOCATION . '/php/random_string.php'); require_once(SITE_LOCATION . '/php/validation.php'); +require_once(SITE_LOCATION . '/php/password_reset_validation.php'); ?> \ No newline at end of file diff --git a/php/password_reset_validation.php b/php/password_reset_validation.php new file mode 100644 index 0000000..c8e4531 --- /dev/null +++ b/php/password_reset_validation.php @@ -0,0 +1,38 @@ + \ No newline at end of file diff --git a/php/random_string.php b/php/random_string.php new file mode 100644 index 0000000..2604474 --- /dev/null +++ b/php/random_string.php @@ -0,0 +1,12 @@ + \ No newline at end of file