1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
fedihub-website/templates/sessions/new.html.hbs

21 lines
674 B
Handlebars

<div class="container mt-4">
<h1>Sign In</h1>
<form method="post" action="/sign_in">
<input type="hidden" name="authenticity_token" value="{{ authenticity_token }}"/>
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" value="{{ username }}" class="form-control" placeholder="Username"/>
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" class="form-control" placeholder="Password"/>
</div>
<button type="submit" class="btn btn-primary">
Sign In
</button>
</form>
</div>