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

38 lines
2 KiB
HTML
Raw Normal View History

2016-08-25 23:33:10 +00:00
<section class="auth signup-view valign-wrapper" data-ng-controller="AuthenticationController">
<div class="row valign">
<div class="col-md-12 text-center vcenter" style="padding-bottom: 50px;">
<img src="/static/modules/core/img/logo_white.svg" height="100px">
</div>
<div class="col-xs-offset-3 col-xs-6 col-sm-offset-4 col-sm-4">
<form name="forms.signupForm" data-ng-submit="signup()" class="signin form-horizontal" autocomplete="off">
2016-08-25 23:33:10 +00:00
<fieldset>
2017-08-01 23:12:13 +00:00
<div data-ng-show="error" id="signup_errors" class="text-center">
2016-08-25 23:33:10 +00:00
{{'SIGNUP_ERROR_TEXT' | translate}}: <br>
<strong data-ng-bind="error"></strong>
2016-06-16 00:38:22 +00:00
</div>
2016-08-25 23:33:10 +00:00
<div class="form-group">
<!--<label for="username">{{ 'USERNAME_LABEL' | translate }}</label>-->
<input type="text" id="username" name="username" class="form-control" ng-pattern="languageRegExp" ng-minlength="4" ng-model="credentials.username" placeholder="{{ 'USERNAME_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="email">{{ 'EMAIL_LABEL' | translate }}</label>-->
<input type="email" id="email" name="email" class="form-control" ng-model="credentials.email" placeholder="{{ 'EMAIL_LABEL' | translate }}" required pattern=".{4,}" title="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" 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="text-center form-group">
<button type="submit" class="btn btn-signup btn-rounded btn-block">{{ 'SIGNUP_BTN' | translate }}</button>
2016-08-25 23:33:10 +00:00
</div>
</fieldset>
</form>
<div class="text-center forgot-password">
<a ui-sref="signin">{{ 'SIGN_IN_ACCOUNT_LINK' | translate }}</a>
</div>
</div>
2015-06-29 22:51:29 +00:00
</div>
2016-03-30 01:16:36 +00:00
</section>