apskel-pos-backend/templates/reset_password.html
2024-08-02 00:16:11 +07:00

138 lines
3.4 KiB
HTML

<!doctype html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
<head>
<title>Reset Password</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style type="text/css">
body {
margin: 0;
padding: 0;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
background-color: #f1f0f7;
}
table,
td {
border-collapse: collapse;
mso-table-lspace: 0pt;
mso-table-rspace: 0pt;
}
img {
border: 0;
height: auto;
line-height: 100%;
outline: none;
text-decoration: none;
-ms-interpolation-mode: bicubic;
}
p {
display: block;
margin: 13px 0;
}
.mj-column-per-100 {
width: 100% !important;
max-width: 100%;
}
.content {
background-color: #ffffff;
margin: 0px auto;
max-width: 600px;
padding: 20px;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
.header {
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 24px;
line-height: 28px;
color: #f46f02;
text-align: center;
margin-bottom: 20px;
}
.title {
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 20px;
line-height: 22px;
color: #000000;
text-align: center;
margin-bottom: 20px;
}
.text {
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 16px;
line-height: 22px;
color: #000000;
text-align: center;
margin-bottom: 20px;
}
.password {
display: block;
width: fit-content;
margin: 20px auto;
background-color: #f5f5f5;
color: #000000;
text-align: center;
padding: 15px 25px;
border-radius: 5px;
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 18px;
line-height: 22px;
font-weight: bold;
letter-spacing: 1px;
}
.footer {
font-family: Ubuntu, Helvetica, Arial, sans-serif;
font-size: 12px;
line-height: 15px;
text-align: center;
color: #808080;
margin-top: 20px;
}
.divider {
border-top: solid 1px #808080;
margin: 20px auto;
width: 100%;
}
.logo {
display: block;
margin: 0 auto 20px;
width: 150px;
}
</style>
</head>
<body>
<div style="padding: 50px; background-color: #f1f0f7;">
<div class="content">
<img src="https://res.cloudinary.com/dl0wpumax/image/upload/v1722531058/furtuna_vqk4er.png" alt="Furtuna Logo" class="logo">
<div class="title">Lupa Kata Sandi</div>
<div class="text">
Kami mengirimkan Anda email ini karena Anda meminta pengaturan ulang kata sandi. Berikut adalah kata sandi sementara Anda:
</div>
<div class="password">{{ .Password }}</div>
<div class="text">Gunakan kata sandi ini untuk masuk dan segera ganti kata sandi Anda setelah berhasil masuk.</div>
<div class="divider"></div>
<div class="footer">
Jangan Bagikan Email Ini. Email ini berisi informasi sensitif. Harap jangan membagikan email, kata sandi, atau kode akses ini kepada orang lain.
</div>
</div>
</div>
</body>
</html>