mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-02 16:49:48 +01:00
65 lines
2.9 KiB
HTML
65 lines
2.9 KiB
HTML
<!--
|
|
Copyright (c) 2016 VMware, Inc. All Rights Reserved.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
{{ if eq .HasLoggedIn true }}
|
|
<div class="has-logged-in">
|
|
<h4>// 'welcome' | tr //</h4>
|
|
<!--p class="text-muted last-logged-in-time">Last login time: //vm.lastLoggedInTime//</p-->
|
|
<p class="control-button"><input type="button" class="btn btn-default pull-right" value="// 'continue' | tr //" ng-click="vm.doContinue()"></p>
|
|
<p class="control-button"><input type="button" class="btn btn-link pull-right" value="// 'log_out' | tr //" ng-click="vm.doLogOut()"></p>
|
|
</div>
|
|
{{ else }}
|
|
<form name="form" class="form-horizontal css-form" novalidate>
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-1 col-sm-10">
|
|
<input id="username" type="text" class="form-control" placeholder="// 'username_email' | tr //" name="uPrincipal" ng-change="vm.reset()" ng-model="user.principal" required>
|
|
<div class="error-message">
|
|
<div ng-messages="form.$submitted && form.uPrincipal.$error">
|
|
<span ng-message="required">// 'username_is_required' | tr //</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-1 col-sm-10">
|
|
<input type="password" class="form-control" placeholder="// 'password' | tr //" name="uPassword" ng-change="vm.reset()" ng-model="user.password" required>
|
|
<div class="error-message">
|
|
<div ng-messages="form.$submitted && form.uPassword.$error">
|
|
<span ng-message="required">// 'password_is_required' | tr //</span>
|
|
</div>
|
|
<span ng-show="vm.hasError">// vm.errorMessage | tr //</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-1 col-sm-10">
|
|
<div class="pull-right">
|
|
<button type="submit" class="btn btn-default" ng-click="vm.doSignIn(user)" loading-progress hide-target="false" toggle-in-progress="vm.signInTIP">// 'sign_in' | tr //</button>
|
|
{{ if eq .AuthMode "db_auth" }}
|
|
<button type="button" class="btn btn-success" ng-click="vm.doSignUp()">// 'sign_up' | tr //</button>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ if eq .AuthMode "db_auth" }}
|
|
<div class="form-group">
|
|
<div class="col-sm-offset-1 col-sm-10">
|
|
<div class="pull-right">
|
|
<a href="javascript:void(0)" ng-click="vm.doForgotPassword()">// 'forgot_password' | tr //</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</form>
|
|
{{ end }} |