import Container from "react-bootstrap/Container"; import Form from "react-bootstrap/Form"; import { Helmet } from "react-helmet-async"; import Button from "react-bootstrap/Button"; import "../styles/SigninScreen.css"; import React from "react"; import { Link, useLocation } from "react-router-dom"; function SigninScreen() { const { search } = useLocation(); const redirectInUrl = new URLSearchParams(search).get("redirect"); const redirect = redirectInUrl ? redirectInUrl : "/"; return (
Најави се

Најави се

Email Лозинка
Нов корисник?{" "} Регистрирај се
); } export default SigninScreen;