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

15 lines
620 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">
2015-07-28 22:29:07 +00:00
<h3 class="col-md-12">Account successfuly activated</h3>
<a href="/#!/signin" class="col-md-12">Continue to login page</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">
2015-07-27 20:33:43 +00:00
<h3 class="col-md-12">Verification link is invalid or has expired</h3>
<a href="/#!/verify" class="col-md-6">Resend your verification email</a>
<a href="/#!/signin" class="col-md-6">Signin to your account</a>
</section>
2015-07-27 18:11:43 +00:00
2016-04-25 16:45:05 +00:00
</section>