mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-03-11 14:40:27 +01:00
61 lines
3.5 KiB
HTML
61 lines
3.5 KiB
HTML
<div ng-controller="AuthenticationController">
|
|
<h3 class="col-md-12 text-center">Or sign up using your email</h3>
|
|
<div class="col-xs-offset-2 col-xs-8 col-md-offset-4 col-md-4">
|
|
<form name="userForm" ng-submit="signup(userForm.$valid)" class="signin" novalidate autocomplete="off">
|
|
<fieldset>
|
|
<div class="form-group" show-errors>
|
|
<label for="firstName">First Name</label>
|
|
<input type="text" id="firstName" name="firstName" class="form-control" ng-model="credentials.firstName" placeholder="First Name" required>
|
|
<div ng-messages="userForm.firstName.$error" role="alert">
|
|
<p class="help-block error-text" ng-message="required">First name is required.</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group" show-errors>
|
|
<label for="lastName">Last Name</label>
|
|
<input type="text" id="lastName" name="lastName" class="form-control" ng-model="credentials.lastName" placeholder="Last Name" required>
|
|
<div ng-messages="userForm.lastName.$error" role="alert">
|
|
<p class="help-block error-text" ng-message="required">Last name is required.</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group" show-errors>
|
|
<label for="email">Email</label>
|
|
<input type="email" id="email" name="email" class="form-control" ng-model="credentials.email" placeholder="Email" lowercase required>
|
|
<div ng-messages="userForm.email.$error" role="alert">
|
|
<p class="help-block error-text" ng-message="required">Email address is required.</p>
|
|
<p class="help-block error-text" ng-message="email">Email address is invalid.</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group" show-errors>
|
|
<label for="username">Username</label>
|
|
<input type="text" id="username" name="username" class="form-control" ng-model="credentials.username" placeholder="Username" lowercase required>
|
|
<div ng-messages="userForm.username.$error" role="alert">
|
|
<p class="help-block error-text" ng-message="required">Username is required.</p>
|
|
</div>
|
|
</div>
|
|
<div class="form-group" show-errors>
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" class="form-control" ng-model="credentials.password" placeholder="Password" popover="{{popoverMsg}}" popover-trigger="focus" password-validator required>
|
|
<div ng-messages="userForm.password.$error" role="alert">
|
|
<p class="help-block error-text" ng-message="required">Password is required.</p>
|
|
<div ng-repeat="passwordError in passwordErrors">
|
|
<p class="help-block error-text" ng-show="userForm.password.$error.requirements">{{passwordError}}</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group" ng-show="!userForm.password.$error.required">
|
|
<label>Password Requirements</label>
|
|
<progressbar value="requirementsProgress" type="{{requirementsColor}}"><span style="color:white; white-space:nowrap;">{{requirementsProgress}}%</span></progressbar>
|
|
</div>
|
|
<div class="text-center form-group">
|
|
<button type="submit" class="btn btn-primary">Sign up</button>
|
|
or
|
|
<a ui-sref="authentication.signin" class="show-signup">Sign in</a>
|
|
</div>
|
|
<div ng-show="error" class="text-center text-danger">
|
|
<strong ng-bind="error"></strong>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
</div>
|
|
</div>
|