mirror of
https://github.com/hrfee/jfa-go.git
synced 2024-10-31 23:40:11 +00:00
Harvey Tindall
9370913ace
When enabled (in Settings > Password Resets), a magic link will be sent instead of a PIN when the user tries reset their password. By doing this the user doesn't have to keep the Jellyfin tab open to enter the code.
85 lines
3.0 KiB
XML
85 lines
3.0 KiB
XML
<mjml>
|
|
<mj-head>
|
|
<mj-raw>
|
|
<meta name="color-scheme" content="light dark">
|
|
<meta name="supported-color-schemes" content="light dark">
|
|
</mj-raw>
|
|
<mj-style>
|
|
:root {
|
|
Color-scheme: light dark;
|
|
supported-color-schemes: light dark;
|
|
}
|
|
@media (prefers-color-scheme: light) {
|
|
Color-scheme: dark;
|
|
.body {
|
|
background: #242424 !important;
|
|
background-color: #242424 !important;
|
|
}
|
|
[data-ogsc] .body {
|
|
background: #242424 !important;
|
|
background-color: #242424 !important;
|
|
}
|
|
[data-ogsb] .body {
|
|
background: #242424 !important;
|
|
background-color: #242424 !important;
|
|
}
|
|
}
|
|
@media (prefers-color-scheme: dark) {
|
|
Color-scheme: dark;
|
|
.body {
|
|
background: #242424 !important;
|
|
background-color: #242424 !important;
|
|
}
|
|
[data-ogsc] .body {
|
|
background: #242424 !important;
|
|
background-color: #242424 !important;
|
|
}
|
|
[data-ogsb] .body {
|
|
background: #242424 !important;
|
|
background-color: #242424 !important;
|
|
}
|
|
}
|
|
</mj-style>
|
|
<mj-attributes>
|
|
<mj-class name="bg" background-color="#101010" />
|
|
<mj-class name="bg2" background-color="#242424" />
|
|
<mj-class name="text" color="#cacaca" />
|
|
<mj-class name="bold" color="rgba(255,255,255,0.87)" />
|
|
<mj-class name="secondary" color="rgb(153,153,153)" />
|
|
<mj-class name="blue" background-color="rgb(0,164,220)" />
|
|
</mj-attributes>
|
|
<mj-font name="Quicksand" href="https://fonts.googleapis.com/css2?family=Quicksand" />
|
|
<mj-font name="Noto Sans" href="https://fonts.googleapis.com/css2?family=Noto+Sans" />
|
|
</mj-head>
|
|
<mj-body>
|
|
<mj-section mj-class="bg2">
|
|
<mj-column>
|
|
<mj-text mj-class="bold" font-size="25px" font-family="Quicksand, Noto Sans, Helvetica, Arial, sans-serif"> {{ .jellyfin }} </mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
<mj-section mj-class="bg">
|
|
<mj-column>
|
|
<mj-text mj-class="text" font-size="16px" font-family="Noto Sans, Helvetica, Arial, sans-serif">
|
|
<p>{{ .helloUser }}</p>
|
|
<p>{{ .someoneHasRequestedReset }}</p>
|
|
<p>{{ .ifItWasYou }}</p>
|
|
<p>{{ .codeExpiry }}</p>
|
|
<p>{{ .ifItWasNotYou }}</p>
|
|
</mj-text>
|
|
<mj-raw>{{ if .link_reset }}</mj-raw>
|
|
<mj-button mj-class="blue bold" href="{{ .pin }}"><mj-raw>{{ .pin_code }}</mj-raw></mj-button>
|
|
<mj-raw>{{ else }}</mj-raw>
|
|
<mj-button mj-class="blue bold"><mj-raw>{{ .pin }}</mj-raw></mj-button>
|
|
<mj-raw>{{ end }}</mj-raw>
|
|
</mj-column>
|
|
</mj-section>
|
|
<mj-section mj-class="bg2">
|
|
<mj-column>
|
|
<mj-text mj-class="secondary" font-style="italic" font-size="14px">
|
|
{{ .message }}
|
|
</mj-text>
|
|
</mj-column>
|
|
</mj-section>
|
|
</body>
|
|
</mjml>
|