mirror of
https://github.com/taobataoma/meanTorrent.git
synced 2026-01-14 11:22:21 +01:00
17 lines
739 B
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>
|