forked from phc/website
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.
23 lines
774 B
Plaintext
23 lines
774 B
Plaintext
---
|
|
import PageLayout from '../layouts/PageLayout.astro'
|
|
---
|
|
|
|
<PageLayout pageTags="login">
|
|
<h1>Login</h1>
|
|
|
|
<!-- form with username and password, and a button for oauth login -->
|
|
<form action="/login" method="post">
|
|
<h3 class="center">Accedi con Poisson</h3>
|
|
<input type="text" id="username" placeholder="Username" name="username" required />
|
|
<input type="password" id="password" placeholder="Password" name="password" required />
|
|
|
|
<button class="primary center" type="submit">Login</button>
|
|
|
|
<hr />
|
|
|
|
<h3 class="center">Accedi con Ateneo</h3>
|
|
<a href="/auth/ateneo" class="primary center" role="button">Login</a>
|
|
</form>
|
|
<!-- <span class="material-symbols-outlined">person</span> -->
|
|
</PageLayout>
|