mirror of
https://github.com/acaloiaro/garbagespeak.com
synced 2026-07-21 18:29:08 +00:00
32 lines
666 B
HTML
32 lines
666 B
HTML
<style>
|
|
.auth-wrapper{
|
|
height: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.auth-wrapper .sign-form{
|
|
max-width: 350px;
|
|
width: 100%;
|
|
padding: 0 20px;
|
|
}
|
|
|
|
.auth-wrapper h1{margin-bottom: 20px;}
|
|
</style>
|
|
|
|
<div class="auth-wrapper">
|
|
<div class="sign-form">
|
|
<h1>Sign up</h1>
|
|
|
|
<form action="/users/create" method="POST" hx-target=".auth-wrapper">
|
|
<input type="text" name="username">
|
|
<input type="email" name="email">
|
|
<input type="text" name="password">
|
|
<input type="text" name="password">
|
|
|
|
<button class="btn btn-success">Sign In!</button>
|
|
|
|
</form>
|
|
</div>
|
|
</div>
|