aboutsummaryrefslogtreecommitdiff
path: root/app/src/components/Login.tsx
diff options
context:
space:
mode:
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);