Spaces:
Build error
Build error
File size: 3,784 Bytes
b7a7f32 |
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Reset Password</title>
<style>
@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
body {
margin: 0px;
padding: 0px;
text-align: center;
font-family: "Roboto", sans-serif;
font-size: 20px;
}
#container {
width: 600px;
height: 800px;
margin: 0px auto;
position: relative;
top: 20px;
}
#logo {
width: 250px;
margin: 0px auto;
}
img {
width: 100%;
}
#mainTextContainer {
width: 500px;
margin: 0px auto;
}
#topText {
text-align: justify;
}
#accentLine1 {
width: 400px;
height: 2px;
margin: 40px auto;
position: relative;
top: -10px;
background-color: #b6b0b0b9;
}
#accentLine2 {
width: 130px;
height: 2px;
margin: 0px auto;
position: relative;
top: -52px;
background-color: #f24f4f;
}
#actionButton {
width: 220px;
height: 55px;
margin: 0px auto;
outline: none;
border: none;
border-radius: 10px;
color: #ffffff;
font-size: 22px;
cursor: pointer;
background-color: #f24f4f;
}
#link {
font-size: 12px;
}
#bottomText {
font-size: 15px;
}
a {
color: #000000;
}
#footer {
color: #676f79;
font-size: 16px;
}
</style>
</head>
<body>
<div id="container">
<div id="logo">
<!-- FIXME: <img src="{{logo_link}}"> -->
<img src="{{frontbase}}/logo-large.svg" />
</div>
<div id="accentLine1"></div>
<div id="accentLine2"></div>
<div id="mainTextContainer">
<p id="mainText">
Hi {{name}}, did you want to reset your password?
</p>
<br />
<p id="topText">
Someone (hopefully you) has asked us to reset the password
for your Sikshyalaya account. Please click the button below
to do so. If you didn't request this password reset, you can
go ahead and ignore this email!<br /><br />
Still have questions? Please contact the School Admin.
</p>
</div>
<div id="accentLine1"></div>
<div>
<button id="actionButton" onlick="location.href='{{link}}'">
Reset Password
</button>
<p id="bottomText">
or click this link: <a href="{{link}}">{{link}}</a>
</p>
</div>
<div id="footer">
© 2021 Sikshyalaya <br />
University Road, 28Kilo, Dhulikhel, Kavre
</div>
</div>
</body>
</html>
|