Type your password below, and see what your password to the dashboard may be. Password will be shown, keep prying eyes away if concerned. If this doesn't help you, you may have had caps lock on when you typed password in.
This tool will display the password as processed by the briffy dashboard Password Reset function, which mangles up password sometimes with special characters. It will not find a password if it was mis-typed. It's not exactly the same because the dashboard is using javascript behind the scenes and this is straight forward php/html. It should be the same but no guarantees since it's done different.
You should change your password immediately. No password data is stored here but you shouldn't trust my saying that.
Inspired by this Discord message: @twig123 briffy password symbol replacement rules.
For geeks, this is the php code:
<?php
$params = explode('&', $_POST['password']);
$password = urldecode($params[0]);
$password = trim(htmlentities(strip_tags(mb_substr($password, 0, 128))));
?>