tellform/public/modules/users/views/authentication/signin.client.view.html

39 lines
1.8 KiB
HTML
Raw Normal View History

2016-08-25 23:33:10 +00:00
<section class="auth sigin-view valign-wrapper" data-ng-controller="AuthenticationController">
2016-05-10 07:25:00 +00:00
2016-08-25 23:33:10 +00:00
<div class="row valign">
<div class="col-md-4 col-md-offset-4">
<div class="col-md-12 text-center" style="padding-bottom: 50px;">
<img src="/static/modules/core/img/logo_white.svg" height="100px">
</div>
<div class="col-md-12">
<form name="forms.signinForm" class="signin form-horizontal" autocomplete="off">
2016-08-25 23:33:10 +00:00
<fieldset>
<div data-ng-show="error" class="text-center text-danger">
2017-10-27 19:52:39 +00:00
{{ 'ERROR' | translate }}: <strong data-ng-bind="error"></strong>
2016-08-25 23:33:10 +00:00
</div>
<div class="form-group">
<!--<label for="username">{{ 'USERNAME_LABEL' | translate }}</label>-->
<input type="text" id="username" name="username" class="form-control" data-ng-model="credentials.username" placeholder="{{ 'USERNAME_OR_EMAIL_LABEL' | translate }}" required pattern=".{4,}" title="Username/Email must be at least 4 characters">
2016-08-25 23:33:10 +00:00
</div>
<div class="form-group">
<!--<label for="password">{{ 'PASSWORD_LABEL' | translate }}</label>-->
<input type="password" id="password" name="password" class="form-control" data-ng-model="credentials.password" placeholder="{{ 'PASSWORD_LABEL' | translate }}" pattern=".{4,}" required title="Passwords must be at least 4 characters">
2016-08-25 23:33:10 +00:00
</div>
<div class="form-group">
<button class="btn btn-signup btn-rounded btn-block" ng-click="signin()">{{ 'SIGNIN_BTN' | translate }}</button>
2016-08-25 23:33:10 +00:00
</div>
<div class="text-center forgot-password">
<a ui-sref="forgot">{{ 'FORGOT_PASSWORD_LINK' | translate }}</a>
</div>
</fieldset>
</form>
</div>
</div>
<div class="text-center forgot-password col-md-12">
<a ui-sref="signup">{{ 'SIGNUP_ACCOUNT_LINK' | translate }}</a>
</div>
2015-06-29 22:51:29 +00:00
</div>
2016-05-10 07:25:00 +00:00
</section>