tellform/public/modules/users/views/verify/verify-account.client.view.html

15 lines
614 B
HTML
Raw Normal View History

2016-04-25 16:45:05 +00:00
<section style="margin-top:50px;" class="row text-center" data-ng-controller="VerifyController" ng-init="validateVerifyToken()">
2015-07-27 18:11:43 +00:00
2015-11-06 01:22:16 +00:00
<section class="row text-center" ng-if="isResetSent">
2016-06-16 00:38:22 +00:00
<h3 class="col-md-12"></h3>
<a href="/#!/signin" class="col-md-12">{{ 'CONTINUE_TO_LOGIN' | translate }}</a>
2015-07-27 20:33:43 +00:00
</section>
2015-07-27 18:11:43 +00:00
2015-11-06 01:22:16 +00:00
<section class="row text-center" ng-if="!isResetSent">
2016-06-16 00:38:22 +00:00
<h3 class="col-md-12">{{ 'VERIFY_ERROR' | translate }}</h3>
<a href="/#!/verify" class="col-md-6">{{ 'REVERIFY_ACCOUNT_LINK' | translate }}</a>
<a href="/#!/signin" class="col-md-6">{{ 'SIGNIN_BTN' | translate }}</a>
2015-07-27 20:33:43 +00:00
</section>
2015-07-27 18:11:43 +00:00
2016-04-25 16:45:05 +00:00
</section>