40 lines
977 B
Plaintext
Executable File
40 lines
977 B
Plaintext
Executable File
p Welcome #{name} to the portal #{nomeapp}!
|
|
p Your access data to remember are:
|
|
span Username:
|
|
strong #{username}<br>
|
|
span Forgot your Password? :
|
|
strong <a href=#{forgetpwd} target="_blank">Find it here</a><br>
|
|
span Email:
|
|
strong #{emailto}<br>
|
|
p To confirm the registration click on the button:
|
|
div.divbtn <a href=#{strlinkreg} target="_blank">
|
|
button.btn.btn-lg Verify Registration</a>
|
|
|
|
|
|
p You can then access your personal area by clicking on LOGIN and filling in all the STEPS required by :
|
|
strong "Step by Step Guide" !<br>
|
|
|
|
|
|
style(type="text/css").
|
|
html, body {
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.divbtn {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.btn-lg {
|
|
padding: 5px;
|
|
margin: 5px;
|
|
font-size: 26px;
|
|
cursor: pointer;
|
|
color: white;
|
|
background: #027be3 !important;
|
|
border-radius: 28px;
|
|
|
|
}
|