You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
436 B
TypeScript
16 lines
436 B
TypeScript
import { prependBaseUrl } from '../api.js'
|
|
import { Header } from '../components/Header.jsx'
|
|
|
|
export const LoginPage = () => {
|
|
return (
|
|
<>
|
|
<Header />
|
|
<main class="page-login">
|
|
<div class="fill">
|
|
<a class="button" role="button" href={prependBaseUrl('/auth/redirect')} data-native>Accedi con Ateneo</a>
|
|
</div>
|
|
</main>
|
|
</>
|
|
)
|
|
}
|