#17 show warning if no primary mail is set
This commit is contained in:
parent
ecd0577ae2
commit
c18ce8f443
1 changed files with 12 additions and 1 deletions
|
@ -79,4 +79,15 @@
|
||||||
</ul>
|
</ul>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
<?php
|
||||||
|
if(!is_null($user) && $user->getMail() == null) {
|
||||||
|
?>
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-12">
|
||||||
|
<div class="alert alert-warning" role="alert">
|
||||||
|
Your E-Mail adress is not validated, please check your mails and click on the link to validate your E-Mail.
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<?php } ?>
|
Reference in a new issue