aboutsummaryrefslogtreecommitdiff
path: root/app/src/components/Login.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/Login.tsx
parentcd237804149bb098868048ccc001d3a6db986565 (diff)
Some clean-up
Diffstat (limited to 'app/src/components/Login.tsx')
-rw-r--r--app/src/components/Login.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/src/components/Login.tsx b/app/src/components/Login.tsx
index 8235b65..a3e5cf9 100644
--- a/app/src/components/Login.tsx
+++ b/app/src/components/Login.tsx
@@ -5,6 +5,8 @@ import { useNavigate } from 'react-router-dom';
import axios from 'axios';
function Login() {
+ document.title = 'LinkLogger | Login'
+
const [username, setUsername] = useState('');
const [password, setPassword] = useState('');
const [isSubmitting, setIsSubmitting] = useState(false);