blob: f0281d46291793529d060e4dbb3f2832650bd7fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
@model Tango.MachineService.Views.FSEAccount.ResetPasswordVM
@{
Layout = "~/Views/Shared/_FSELayout.cshtml";
}
<style>
.center-div {
position:relative;
clear: both;
margin-top: 100px;
text-align:center;
}
</style>
<div class="center-div">
<img src="~/Images/fse/password_reset.png" />
<h2>Hello @Model.FullName,</h2>
<br />
<h3>Your Tango FSE password was successfully reset</h3>
<div>Your new temporary password is:</div>
<div style="color:darkorange;font-weight:400">@Model.Password</div>
<br/>
<div style="color:gray">Please login to your account using the Tango FSE software to complete the process</div>
</div>
|