Compare commits

...

5 commits

7 changed files with 19 additions and 1 deletions

View file

@ -14,6 +14,8 @@ hero:
variant: minimal
icon: matrix
link: https://matrix.to/#/#community:federated.nexus
banner:
content: If you are experiencing issues, check <a href="https://status.federated.nexus">our status page.</a>
---
import { CardGrid, Card } from "@astrojs/starlight/components"

View file

@ -17,6 +17,9 @@ import "../../styles/page.css"
pattern="^[A-Za-z0-9]+$"
/>
</label>
<div class="honeypot">
<input type="text" name="honeypot" tabindex="-1" autocomplete="off">
</div>
<label>
E-mail
<input name="email" type="email" required />

View file

@ -16,6 +16,9 @@ import "../styles/page.css"
pattern="^[A-Za-z0-9]+$"
/>
</label>
<div class="honeypot">
<input type="text" name="honeypot" tabindex="-1" autocomplete="off">
</div>
<label>
Email
<input name="email" type="email" required />

View file

@ -29,7 +29,7 @@ import "../../styles/page.css"
<button type="submit"><span>Отправить</span></button>
<a href="/register"
>У вас нет учётной записи? Зарегистрируйтесь сейчас!</a
>У вас ещё нет учётной записи? Зарегистрируйтесь!</a
>
</form>
</StarlightPage>

View file

@ -16,6 +16,9 @@ import "../../styles/page.css"
pattern="^[A-Za-z0-9]+$"
/>
</label>
<div class="honeypot">
<input type="text" name="honeypot" tabindex="-1" autocomplete="off">
</div>
<label>
E-mail
<input name="email" type="email" required />

View file

@ -16,6 +16,9 @@ import "../../styles/page.css"
pattern="^[A-Za-z0-9]+$"
/>
</label>
<div class="honeypot">
<input type="text" name="honeypot" tabindex="-1" autocomplete="off">
</div>
<label>
E-mail
<input name="email" type="email" required />

View file

@ -1,4 +1,8 @@
body {
& .honeypot {
display: none;
}
display: flex;
flex-direction: column;
align-items: center;