aboutsummaryrefslogtreecommitdiff
path: root/app/src/components/Signup.tsx
diff options
context:
space:
mode:
authorParker <contact@pkrm.dev>2024-11-10 23:17:10 -0600
committerParker <contact@pkrm.dev>2024-11-10 23:17:10 -0600
commit05666369a2e9bb23f9471b11009963eccc838bf6 (patch)
tree11a63a514d4655932ae6f8d3fcb2589d31a53150 /app/src/components/Signup.tsx
parentcd237804149bb098868048ccc001d3a6db986565 (diff)
Some clean-up
Diffstat (limited to 'app/src/components/Signup.tsx')
-rw-r--r--app/src/components/Signup.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/src/components/Signup.tsx b/app/src/components/Signup.tsx
index 293b51a..547fa9e 100644
--- a/app/src/components/Signup.tsx
+++ b/app/src/components/Signup.tsx
@@ -5,6 +5,8 @@ import { useNavigate } from 'react-router-dom';
import axios from 'axios';
function Signup() {
+ document.title = 'LinkLogger | Signup'
+
const [username, setUsername] = useState('');
const [password, setPassword] = useState('');
const [passwordConfirm, setPasswordConfirm] = useState('');