This repository has been archived by the owner on Jan 9, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d69540e
commit a31a659
Showing
2 changed files
with
15 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
<div class="container"> | ||
<form class="form-signin" role="form" {{action 'authenticate' on='submit'}}> | ||
<h2 class="form-signin-heading">Please sign in</h2> | ||
<h2 class="form-signin-heading">{{t 'login.messages.sign_in'}}</h2> | ||
<div class="form-group"> | ||
{{input id='identification' value=identification placeholder='Username' class='form-control'}} | ||
{{input id='identification' value=identification placeholder=(t 'login.labels.username') class='form-control'}} | ||
</div> | ||
<div class="form-group"> | ||
{{input id='password' type='password' value=password placeholder='Password' class='form-control'}} | ||
{{input id='password' type='password' value=password placeholder=(t 'login.labels.password') class='form-control'}} | ||
</div> | ||
<button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button> | ||
<button class="btn btn-lg btn-primary btn-block" type="submit">{{t 'login.labels.sign_in'}}</button> | ||
</form> | ||
</div> <!-- /container --> | ||
</div> <!-- /container --> |