Files
meanTorrent/modules/users/client/views/authentication/active.client.view.html

17 lines
739 B
HTML

<div>
<div class="col-sm-10 col-sm-offset-1 margin-top-100 padding-top-20">
<div ng-if="vm.activeMethod === 'invalid'">
<span class="active-notice text-danger" translate="SIGN.ACTIVE_INVALID"></span>
</div>
<div ng-if="vm.activeMethod === 'error'">
<span class="active-notice text-danger" translate="SIGN.ACTIVE_ERROR"></span>
</div>
<div ng-if="vm.activeMethod === 'failed'">
<span class="active-notice text-danger" translate="SIGN.ACTIVE_FAILED"></span>
</div>
<div ng-if="vm.activeMethod === 'successfully'">
<span class="active-notice text-success" translate="SIGN.ACTIVE_SUCCESSFULLY"></span>
</div>
</div>
</div>