ComunicWeb/assets/templates/pages/accountCreated.tpl

47 lines
825 B
Smarty
Raw Normal View History

2018-04-11 10:25:50 +00:00
<!--
Account created template
@author Pierre HUBERT
-->
<!-- Page style updated -->
<style>
.content-wrapper {
background-image: url({background_img_url});
background-position: 10% 50%;
}
.page_account_created {
display: table;
padding-top: 20px;
width: 100%;
}
.message_container {
display: table-cell;
vertical-align: middle;
}
.message {
background-color: #fff9;
max-width: 500px;
margin: auto;
text-align: center;
padding: 20px;
}
</style>
<!-- Page content -->
<div class="page_account_created">
<div class="message_container">
<div class="message">
2018-08-03 13:11:42 +00:00
<h1>[[account_created_message_title]]</h1>
2018-04-11 10:25:50 +00:00
<br />
2018-08-03 13:11:42 +00:00
<h4>[[account_created_message_body]]</h4>
2018-04-11 10:25:50 +00:00
<br />
2018-08-03 13:11:42 +00:00
<a target="login" class="btn btn-primary btn-lg">[[account_created_message_login]]</a>
2018-04-11 10:25:50 +00:00
</div>
</div>
</div>