Skip to content

Commit

Permalink
Minor change at ngCheckout
Browse files Browse the repository at this point in the history
  • Loading branch information
disc5 committed Apr 27, 2016
1 parent 12bcb03 commit 5ac2d78
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
<img class="login-img" src="img/checkout.png" alt="Logo">

<form class="form-signin" data-ng-submit="manualLogin()">
<h2 class="form-signin-heading">{{'Login into "Checkout"' | translate}}</h2>
<h2 class="form-signin-heading">{{'Checkout' | translate}}</h2>

<label for="inputApiKey" class="sr-only">{{'LOGIN_APIKEY' | translate}}</label>
<input data-ng-model="formData.apiKey" type="text" id="inputApiKey" class="form-control" placeholder="{{'LOGIN_APIKEY' | translate}}" required autofocus>


<label for="inputUser" class="sr-only">{{'LOGIN_USERNAME' | translate}}</label>
<input data-ng-model="formData.userName" type="text" id="inputUser" class="form-control" placeholder="{{'LOGIN_USERNAME' | translate}}" required>
<input data-ng-model="formData.userName" type="text" id="inputUser" class="form-control" placeholder="{{'LOGIN_USERNAME' | translate}}" required />

<label for="inputPassword" class="sr-only">{{'LOGIN_PASSWORD' | translate}}</label>
<input data-ng-model="formData.password" type="password" id="inputPassword" class="form-control" placeholder="{{'LOGIN_PASSWORD' | translate}}" required>
<input data-ng-model="formData.password" type="password" id="inputPassword" class="form-control" placeholder="{{'LOGIN_PASSWORD' | translate}}" required />

<button class="btn btn-lg btn-primary btn-block" type="submit">{{'LOGIN_LOGIN' | translate}}</button>
</form>
Expand Down

0 comments on commit 5ac2d78

Please sign in to comment.