garbagespeak.com/partials/users/create.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>