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

22 lines
812 B
Handlebars

<div class="container mt-4">
<h1>{{ translate "en" "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">{{ translate "en" "username" }}</label>
<input type="text" id="username" name="username" value="{{ username }}" class="form-control" placeholder="{{ translate "en" "username" }}"/>
</div>
<div class="form-group">
<label for="password">{{ translate "en" "password" }}</label>
<input type="password" id="password" name="password" class="form-control" placeholder="{{ translate "en" "password" }}"/>
</div>
<button type="submit" class="btn btn-primary">
{{ translate "en" "sign-in" }}
</button>
</form>
</div>