using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Diligent.WebAPI.Business.Helper { public static class HTMLHelper { public static string RenderForgotPasswordPage(string url) { return "
" + "
" + "

HR Center Password Reset

" + "

" + "To reset your HR Center password, please click on the button below." + "

" + "" + " RESET PASSWORD" + "" + "

" + "Please do not reply to this email.This message was sent from a notification-only address that is not monitored." + "

" + "
" + "
"; } public static string RenderRegisterPage(string url) { return "
" + "
" + "

Welcome to HR Center

" + "

" + "To register, please click on the button below." + "

" + "" + " Click here to register" + "" + "

" + "Please do not reply to this email.This message was sent from a notification-only address that is not monitored." + "

" + "
" + "
"; } public static string RenderTagPage(string url) { return "
" + "" + "Click here to see the comment" + "" + "
"; } public static string SuccessfulStep(string message, string pattern, string date) { return "
" + "
" + "

" + pattern + "

" + "
" + "
" + "

Poštovani,

" + "
" + "
" + "

" + message + " " + date + "

" + "
" + "
" + "

Srdačan pozdrav,
Diligent HR Team

" + "
" + "
"; } //public static string ScheduleInterview(string pattern, string message) //{ // Dictionary Patterns = new Dictionary // { // { "Neuspesan korak", $"

Neuspesan korak: {message}

" }, // { "Uspesan korak", SuccessfulStep(message, pattern) } // }; // return Patterns[pattern]; //} } }