mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 10:34:17 +00:00
11 lines
602 B
JavaScript
11 lines
602 B
JavaScript
import fs from "node:fs"
|
|
import path from "node:path"
|
|
|
|
import Handlebars from "handlebars"
|
|
|
|
export default {
|
|
new_login: Handlebars.compile(fs.readFileSync(path.resolve(__dirname, "new_login/index.handlebars"), "utf-8")),
|
|
mfa_code: Handlebars.compile(fs.readFileSync(path.resolve(__dirname, "mfa_code/index.handlebars"), "utf-8")),
|
|
password_recovery: Handlebars.compile(fs.readFileSync(path.resolve(__dirname, "password_recovery/index.handlebars"), "utf-8")),
|
|
password_changed: Handlebars.compile(fs.readFileSync(path.resolve(__dirname, "password_changed/index.handlebars"), "utf-8")),
|
|
} |