This commit is contained in:
@@ -3,16 +3,27 @@
|
||||
@{
|
||||
ViewData["Title"] = "관리자 로그인";
|
||||
ViewData["Description"] = "관리자 로그인 페이지입니다.";
|
||||
ViewData["CanonicalUrl"] = $"{Request.Scheme}://{Request.Host}/taxbaik/admin/login";
|
||||
ViewData["CanonicalUrl"] = $"{Request.Scheme}://{Request.Host}/admin/login";
|
||||
}
|
||||
|
||||
<section class="container py-5" style="max-width: 560px;">
|
||||
<div class="card shadow-sm border-0">
|
||||
<section class="admin-login-shell">
|
||||
<div class="admin-login-hero">
|
||||
<p class="admin-login-kicker">TaxBaik Admin</p>
|
||||
<h1>관리자 로그인</h1>
|
||||
<p>로그인 후 대시보드, 문의 처리, 콘텐츠 운영 화면으로 바로 이동합니다.</p>
|
||||
</div>
|
||||
|
||||
<div class="card shadow-sm border-0 admin-login-card">
|
||||
<div class="card-body p-4 p-md-5">
|
||||
<div class="mb-4">
|
||||
<p class="text-uppercase text-muted small mb-1">TaxBaik Admin</p>
|
||||
<h1 class="h3 fw-bold mb-2">관리자 로그인</h1>
|
||||
<p class="text-muted mb-0">로그인 후 대시보드와 관리자 기능을 이용할 수 있습니다.</p>
|
||||
<div class="admin-login-summary mb-4">
|
||||
<div>
|
||||
<p class="text-uppercase text-muted small mb-1">현재 화면</p>
|
||||
<strong>로그인</strong>
|
||||
</div>
|
||||
<div>
|
||||
<p class="text-uppercase text-muted small mb-1">진입 후</p>
|
||||
<strong>대시보드 자동 이동</strong>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@if (!string.IsNullOrWhiteSpace(Model.ErrorMessage))
|
||||
@@ -20,7 +31,7 @@
|
||||
<div class="alert alert-danger" role="alert">@Model.ErrorMessage</div>
|
||||
}
|
||||
|
||||
<form id="admin-login-form" method="post" class="vstack gap-3">
|
||||
<form id="admin-login-form" method="post" class="vstack gap-3 admin-login-form">
|
||||
@Html.AntiForgeryToken()
|
||||
<input type="hidden" id="ReturnUrl" name="ReturnUrl" value="@Model.ReturnUrl" />
|
||||
|
||||
@@ -37,7 +48,7 @@
|
||||
</div>
|
||||
|
||||
<div class="form-check">
|
||||
<input class="form-check-input" id="RememberMe" name="RememberMe" type="checkbox" value="true" checked="@(Model.RememberMe ? "checked" : null)" />
|
||||
<input class="form-check-input" id="RememberMe" name="RememberMe" type="checkbox" value="true" checked="@(Model.RememberMe)" />
|
||||
<label class="form-check-label" for="RememberMe">로그인 상태 유지</label>
|
||||
</div>
|
||||
|
||||
@@ -46,8 +57,8 @@
|
||||
</button>
|
||||
</form>
|
||||
|
||||
<p class="text-muted small mt-4 mb-0">
|
||||
이 페이지는 서버 렌더링 기반입니다. 로그인 성공 후 관리자 웹앱으로 이동합니다.
|
||||
<p class="admin-login-footnote">
|
||||
이 페이지는 서버 렌더링 기반이며, 로그인 성공 후 관리자 웹앱으로 이동합니다.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -91,11 +91,8 @@ public class LoginModel(AuthService authService) : PageModel
|
||||
if (string.Equals(absolute.Host, "www.taxbaik.com", StringComparison.OrdinalIgnoreCase) ||
|
||||
string.Equals(absolute.Host, "taxbaik.com", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
// PathAndQuery에서 /taxbaik 프리픽스 제거 (Nginx가 처리)
|
||||
var path = absolute.PathAndQuery;
|
||||
return path.StartsWith("/taxbaik/", StringComparison.OrdinalIgnoreCase)
|
||||
? path.Substring("/taxbaik".Length) // "/taxbaik/admin" → "/admin"
|
||||
: path;
|
||||
return path;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
rssContent.AppendLine("<rss version=\"2.0\" xmlns:content=\"http://purl.org/rss/1.0/modules/content/\">");
|
||||
rssContent.AppendLine(" <channel>");
|
||||
rssContent.AppendLine(" <title>백원숙 세무회계 - 블로그</title>");
|
||||
rssContent.AppendLine(" <link>https://www.taxbaik.com/taxbaik</link>");
|
||||
rssContent.AppendLine(" <link>https://www.taxbaik.com</link>");
|
||||
rssContent.AppendLine(" <description>세무사 백원숙의 세금, 부동산, 가족자산 전문 블로그</description>");
|
||||
rssContent.AppendLine(" <language>ko-kr</language>");
|
||||
rssContent.AppendLine($" <lastBuildDate>{Model.LastBuildDate}</lastBuildDate>");
|
||||
@@ -18,8 +18,8 @@
|
||||
{
|
||||
rssContent.AppendLine(" <item>");
|
||||
rssContent.AppendLine($" <title>{System.Net.WebUtility.HtmlEncode(post.Title)}</title>");
|
||||
rssContent.AppendLine($" <link>https://www.taxbaik.com/taxbaik/blog/{post.Slug}</link>");
|
||||
rssContent.AppendLine($" <guid isPermaLink=\"true\">https://www.taxbaik.com/taxbaik/blog/{post.Slug}</guid>");
|
||||
rssContent.AppendLine($" <link>https://www.taxbaik.com/blog/{post.Slug}</link>");
|
||||
rssContent.AppendLine($" <guid isPermaLink=\"true\">https://www.taxbaik.com/blog/{post.Slug}</guid>");
|
||||
rssContent.AppendLine($" <pubDate>{post.PublishedAt?.ToString("R")}</pubDate>");
|
||||
var desc = post.Content?.Substring(0, Math.Min(200, post.Content?.Length ?? 0)) ?? "";
|
||||
rssContent.AppendLine($" <description>{System.Net.WebUtility.HtmlEncode(desc)}</description>");
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
@{
|
||||
ViewData["Title"] = "고객 포털 로그인";
|
||||
ViewData["Description"] = "고객 포털 로그인 페이지입니다.";
|
||||
ViewData["CanonicalUrl"] = $"{Request.Scheme}://{Request.Host}/taxbaik/portal/login";
|
||||
ViewData["CanonicalUrl"] = $"{Request.Scheme}://{Request.Host}/portal/login";
|
||||
}
|
||||
|
||||
<section class="container py-5" style="max-width: 560px;">
|
||||
|
||||
@@ -52,5 +52,5 @@ public class LoginModel : PageModel
|
||||
public IActionResult OnPostKakao() => Challenge(BuildProps("kakao"), PortalOAuthDefaults.KakaoScheme);
|
||||
|
||||
private static AuthenticationProperties BuildProps(string provider) =>
|
||||
new() { RedirectUri = $"/taxbaik/portal/external-callback?provider={provider}" };
|
||||
new() { RedirectUri = $"/portal/external-callback?provider={provider}" };
|
||||
}
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
@{
|
||||
ViewData["Title"] = "고객 포털 회원가입";
|
||||
ViewData["Description"] = "고객 포털 회원가입 페이지입니다.";
|
||||
ViewData["CanonicalUrl"] = $"{Request.Scheme}://{Request.Host}/taxbaik/portal/register";
|
||||
ViewData["CanonicalUrl"] = $"{Request.Scheme}://{Request.Host}/portal/register";
|
||||
}
|
||||
|
||||
<section class="container py-5" style="max-width: 640px;">
|
||||
|
||||
@@ -8,7 +8,7 @@
|
||||
rssContent.AppendLine("<rss version=\"2.0\" xmlns:content=\"http://purl.org/rss/1.0/modules/content/\">");
|
||||
rssContent.AppendLine(" <channel>");
|
||||
rssContent.AppendLine(" <title>백원숙 세무회계 - 블로그</title>");
|
||||
rssContent.AppendLine(" <link>https://www.taxbaik.com/taxbaik</link>");
|
||||
rssContent.AppendLine(" <link>https://www.taxbaik.com</link>");
|
||||
rssContent.AppendLine(" <description>세무사 백원숙의 세금, 부동산, 가족자산 전문 블로그</description>");
|
||||
rssContent.AppendLine(" <language>ko-kr</language>");
|
||||
rssContent.AppendLine($" <lastBuildDate>{Model.LastBuildDate}</lastBuildDate>");
|
||||
@@ -18,8 +18,8 @@
|
||||
{
|
||||
rssContent.AppendLine(" <item>");
|
||||
rssContent.AppendLine($" <title>{System.Net.WebUtility.HtmlEncode(post.Title)}</title>");
|
||||
rssContent.AppendLine($" <link>https://www.taxbaik.com/taxbaik/blog/{post.Slug}</link>");
|
||||
rssContent.AppendLine($" <guid isPermaLink=\"true\">https://www.taxbaik.com/taxbaik/blog/{post.Slug}</guid>");
|
||||
rssContent.AppendLine($" <link>https://www.taxbaik.com/blog/{post.Slug}</link>");
|
||||
rssContent.AppendLine($" <guid isPermaLink=\"true\">https://www.taxbaik.com/blog/{post.Slug}</guid>");
|
||||
rssContent.AppendLine($" <pubDate>{post.PublishedAt?.ToString("R")}</pubDate>");
|
||||
var desc = post.Content?.Substring(0, Math.Min(200, post.Content?.Length ?? 0)) ?? "";
|
||||
rssContent.AppendLine($" <description>{System.Net.WebUtility.HtmlEncode(desc)}</description>");
|
||||
|
||||
@@ -16,7 +16,7 @@ public class SitemapModel : PageModel
|
||||
|
||||
public async Task OnGetAsync()
|
||||
{
|
||||
var baseUrl = "https://www.taxbaik.com/taxbaik";
|
||||
var baseUrl = "https://www.taxbaik.com";
|
||||
|
||||
// 정적 페이지 (항상 포함)
|
||||
Urls.AddRange(new[]
|
||||
|
||||
@@ -11,14 +11,14 @@
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="@(ViewData["Title"] ?? "백원숙 세무회계 - 세무사 전문 상담")" />
|
||||
<meta property="og:description" content="@(ViewData["Description"] ?? "백원숙 세무회계 - 사업자 기장, 부동산 양도세·증여세, 종합소득세 전문 상담. 맞춤형 세무 절세 컨설팅 제공.")" />
|
||||
<meta property="og:image" content="@(ViewData["OgImage"] ?? "https://www.taxbaik.com/taxbaik/images/og-image.jpg")" />
|
||||
<meta property="og:url" content="@(ViewData["OgUrl"] ?? "https://www.taxbaik.com/taxbaik/")" />
|
||||
<meta property="og:image" content="@(ViewData["OgImage"] ?? "https://www.taxbaik.com/images/og-image.jpg")" />
|
||||
<meta property="og:url" content="@(ViewData["OgUrl"] ?? "https://www.taxbaik.com/")" />
|
||||
|
||||
<!-- Twitter -->
|
||||
<meta property="twitter:card" content="summary_large_image" />
|
||||
<meta property="twitter:title" content="@(ViewData["Title"] ?? "백원숙 세무회계 - 세무사 전문 상담")" />
|
||||
<meta property="twitter:description" content="@(ViewData["Description"] ?? "백원숙 세무회계 - 사업자 기장, 부동산 양도세·증여세, 종합소득세 전문 상담. 맞춤형 세무 절세 컨설팅 제공.")" />
|
||||
<meta property="twitter:image" content="@(ViewData["OgImage"] ?? "https://www.taxbaik.com/taxbaik/images/og-image.jpg")" />
|
||||
<meta property="twitter:image" content="@(ViewData["OgImage"] ?? "https://www.taxbaik.com/images/og-image.jpg")" />
|
||||
|
||||
<!-- 검색엔진 등록용 소유권 인증 메타 태그 (발급받으신 토큰이 있으면 아래 content에 넣어 주시면 됩니다) -->
|
||||
<!-- <meta name="naver-site-verification" content="네이버_서치어드바이저_토큰_입력" /> -->
|
||||
@@ -27,7 +27,6 @@
|
||||
<meta name="robots" content="index, follow" />
|
||||
<meta name="theme-color" content="#C89D6E" />
|
||||
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
||||
<link rel="alternate icon" href="/favicon.ico" />
|
||||
|
||||
<!-- RSS Feed -->
|
||||
<link rel="alternate" type="application/rss+xml" title="백원숙 세무회계 블로그" href="/rss.xml" />
|
||||
@@ -36,7 +35,7 @@
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
|
||||
<link rel="dns-prefetch" href="https://cdn.jsdelivr.net" />
|
||||
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Noto+Sans+KR:wght@400;500;700&family=Outfit:wght@400;500;600;700;800&display=swap" rel="stylesheet" />
|
||||
<link rel="canonical" href="@(ViewData["CanonicalUrl"] ?? "https://www.taxbaik.com/taxbaik/")" />
|
||||
<link rel="canonical" href="@(ViewData["CanonicalUrl"] ?? "https://www.taxbaik.com/")" />
|
||||
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet" />
|
||||
<link rel="stylesheet" href="~/css/site.css" asp-append-version="true" />
|
||||
|
||||
@@ -47,7 +46,7 @@
|
||||
"@@type": "ProfessionalService",
|
||||
"name": "백원숙 세무회계",
|
||||
"description": "사업자 기장, 부동산 양도세·증여세, 종합소득세 전문 상담 세무사",
|
||||
"url": "https://www.taxbaik.com/taxbaik/",
|
||||
"url": "https://www.taxbaik.com/",
|
||||
"telephone": "010-4122-8268",
|
||||
"email": "taxbaik5668@gmail.com",
|
||||
"address": {
|
||||
|
||||
+16
-10
@@ -40,7 +40,7 @@ builder.Host.UseSerilog((context, config) =>
|
||||
.MinimumLevel.Information()
|
||||
.WriteTo.Console()
|
||||
.WriteTo.File(
|
||||
path: "logs/taxbaik-.log",
|
||||
path: "logs/taxbaik-web-.log",
|
||||
rollingInterval: RollingInterval.Day,
|
||||
outputTemplate: "[{Timestamp:yyyy-MM-dd HH:mm:ss.fff zzz}] [{Level:u3}] {Message:lj}{NewLine}{Exception}")
|
||||
.Enrich.FromLogContext()
|
||||
@@ -48,7 +48,9 @@ builder.Host.UseSerilog((context, config) =>
|
||||
|
||||
var botToken = context.Configuration["Telegram:BotToken"];
|
||||
var systemChatId = context.Configuration["Telegram:SystemChatId"] ?? context.Configuration["Telegram:ChatId"];
|
||||
if (!string.IsNullOrEmpty(botToken) && !string.IsNullOrEmpty(systemChatId))
|
||||
if (context.HostingEnvironment.IsProduction()
|
||||
&& !string.IsNullOrEmpty(botToken)
|
||||
&& !string.IsNullOrEmpty(systemChatId))
|
||||
{
|
||||
config.WriteTo.Sink(new TaxBaik.Web.Logging.TelegramSink(botToken, systemChatId), Serilog.Events.LogEventLevel.Error);
|
||||
}
|
||||
@@ -146,8 +148,8 @@ var authenticationBuilder = builder.Services.AddAuthentication(opts =>
|
||||
opts.Cookie.HttpOnly = true;
|
||||
opts.Cookie.SameSite = SameSiteMode.Lax;
|
||||
opts.Cookie.SecurePolicy = isProduction ? CookieSecurePolicy.Always : CookieSecurePolicy.SameAsRequest;
|
||||
opts.LoginPath = "/taxbaik/portal/login";
|
||||
opts.AccessDeniedPath = "/taxbaik/portal/login";
|
||||
opts.LoginPath = "/portal/login";
|
||||
opts.AccessDeniedPath = "/portal/login";
|
||||
opts.SlidingExpiration = true;
|
||||
opts.ExpireTimeSpan = TimeSpan.FromDays(7);
|
||||
})
|
||||
@@ -168,7 +170,7 @@ if (!string.IsNullOrWhiteSpace(googleClientId) && !string.IsNullOrWhiteSpace(goo
|
||||
opts.SignInScheme = PortalOAuthDefaults.ExternalScheme;
|
||||
opts.ClientId = googleClientId;
|
||||
opts.ClientSecret = googleClientSecret;
|
||||
opts.CallbackPath = "/taxbaik/portal/signin-google";
|
||||
opts.CallbackPath = "/portal/signin-google";
|
||||
});
|
||||
}
|
||||
|
||||
@@ -181,7 +183,7 @@ if (!string.IsNullOrWhiteSpace(naverClientId) && !string.IsNullOrWhiteSpace(nave
|
||||
opts.SignInScheme = PortalOAuthDefaults.ExternalScheme;
|
||||
opts.ClientId = naverClientId;
|
||||
opts.ClientSecret = naverClientSecret;
|
||||
opts.CallbackPath = "/taxbaik/portal/signin-naver";
|
||||
opts.CallbackPath = "/portal/signin-naver";
|
||||
opts.AuthorizationEndpoint = "https://nid.naver.com/oauth2.0/authorize";
|
||||
opts.TokenEndpoint = "https://nid.naver.com/oauth2.0/token";
|
||||
opts.UserInformationEndpoint = "https://openapi.naver.com/v1/nid/me";
|
||||
@@ -213,7 +215,7 @@ if (!string.IsNullOrWhiteSpace(kakaoClientId) && !string.IsNullOrWhiteSpace(kaka
|
||||
opts.SignInScheme = PortalOAuthDefaults.ExternalScheme;
|
||||
opts.ClientId = kakaoClientId;
|
||||
opts.ClientSecret = kakaoClientSecret;
|
||||
opts.CallbackPath = "/taxbaik/portal/signin-kakao";
|
||||
opts.CallbackPath = "/portal/signin-kakao";
|
||||
opts.AuthorizationEndpoint = "https://kauth.kakao.com/oauth/authorize";
|
||||
opts.TokenEndpoint = "https://kauth.kakao.com/oauth/token";
|
||||
opts.UserInformationEndpoint = "https://kapi.kakao.com/v2/user/me";
|
||||
@@ -399,7 +401,7 @@ app.Use(async (context, next) =>
|
||||
{
|
||||
var path = context.Request.Path.Value ?? string.Empty;
|
||||
if (path.Equals("/favicon.ico", StringComparison.OrdinalIgnoreCase) ||
|
||||
path.Equals("/taxbaik/favicon.ico", StringComparison.OrdinalIgnoreCase))
|
||||
path.Equals("/favicon.ico", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
context.Response.ContentType = "image/svg+xml";
|
||||
await context.Response.SendFileAsync(Path.Combine(app.Environment.WebRootPath ?? "wwwroot", "favicon.svg"));
|
||||
@@ -427,13 +429,17 @@ catch (Exception ex)
|
||||
Console.WriteLine($"Migration warning (development only): {ex.Message}");
|
||||
}
|
||||
|
||||
// PathBase는 Nginx reverse proxy에서 처리 (절대 경로 제거)
|
||||
// app.UsePathBase("/taxbaik"); ← 상대 경로로 전환됨
|
||||
// PathBase는 사용하지 않음
|
||||
|
||||
// 개발 및 테스트 환경에서 resource-collection.js 404로 인해 Blazor WASM이 크래시되는 현상 방지
|
||||
app.Use(async (context, next) =>
|
||||
{
|
||||
var path = context.Request.Path.Value ?? string.Empty;
|
||||
if (path.Equals("/_framework/blazor-hotreload", StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
context.Response.StatusCode = StatusCodes.Status204NoContent;
|
||||
return;
|
||||
}
|
||||
if (path.Contains("resource-collection") && path.EndsWith(".js"))
|
||||
{
|
||||
context.Response.ContentType = "application/javascript";
|
||||
|
||||
@@ -47,7 +47,7 @@ public class SitemapValidationService
|
||||
|
||||
// 2. 동적 블로그 포스트 검증
|
||||
var (posts, _) = await _blogService.GetPublishedPagedAsync(1, 1000, categoryId: null, ct: default);
|
||||
var blogUrls = posts.Select(p => $"https://www.taxbaik.com/taxbaik/blog/{p.Slug}").ToList();
|
||||
var blogUrls = posts.Select(p => $"https://www.taxbaik.com/blog/{p.Slug}").ToList();
|
||||
|
||||
ValidateUrls(blogUrls, result);
|
||||
|
||||
@@ -129,7 +129,7 @@ public class SitemapValidationService
|
||||
}
|
||||
|
||||
// GUID 유효성 (URL 형식)
|
||||
var guid = $"https://www.taxbaik.com/taxbaik/blog/{post.Slug}";
|
||||
var guid = $"https://www.taxbaik.com/blog/{post.Slug}";
|
||||
if (!Uri.TryCreate(guid, UriKind.Absolute, out _))
|
||||
{
|
||||
result.Errors.Add($"GUID 유효하지 않음: {guid}");
|
||||
@@ -242,7 +242,7 @@ public class SitemapValidationService
|
||||
/// </summary>
|
||||
private static List<string> GetStaticUrls()
|
||||
{
|
||||
var baseUrl = "https://www.taxbaik.com/taxbaik";
|
||||
var baseUrl = "https://www.taxbaik.com";
|
||||
return new List<string>
|
||||
{
|
||||
$"{baseUrl}",
|
||||
|
||||
@@ -17,7 +17,7 @@ public class TelegramInquiryNotificationService : IInquiryNotificationService
|
||||
_httpClientFactory = httpClientFactory;
|
||||
_configuration = configuration;
|
||||
_logger = logger;
|
||||
_baseUrl = (_configuration["App:PublicBaseUrl"] ?? "https://www.taxbaik.com/taxbaik").TrimEnd('/');
|
||||
_baseUrl = (_configuration["App:PublicBaseUrl"] ?? "https://www.taxbaik.com").TrimEnd('/');
|
||||
}
|
||||
|
||||
public async Task NotifyCreatedAsync(int inquiryId, string name, string phone, string serviceType, string message, string? ipAddress, DateTime createdAtUtc, CancellationToken ct = default)
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
"Default": "Host=localhost;Database=taxbaikdb;Username=taxbaik;Password=taxbaik123"
|
||||
},
|
||||
"ApiClient": {
|
||||
"BaseUrl": "http://localhost:5001/taxbaik/api/"
|
||||
"BaseUrl": "http://localhost:5001/api/"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
"SecretKey": "dev-secret-key-change-in-production-min-32-chars!"
|
||||
},
|
||||
"App": {
|
||||
"PublicBaseUrl": "https://www.taxbaik.com/taxbaik"
|
||||
"PublicBaseUrl": "https://www.taxbaik.com"
|
||||
},
|
||||
"ApiClient": {
|
||||
"BaseUrl": "http://localhost:5001/taxbaik/api/"
|
||||
"BaseUrl": "http://localhost:5001/api/"
|
||||
},
|
||||
"Telegram": {
|
||||
"BotToken": "8679990909:AAGLLRUIAuEbYAZVGOYDu-UuTu4ihroEiX0",
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>TaxBaik Admin</title>
|
||||
<base href="/taxbaik/admin/" />
|
||||
<base href="/admin/" />
|
||||
<link href="_framework/bootstrap/bootstrap.min.css" rel="stylesheet" />
|
||||
<link href="app.css" rel="stylesheet" />
|
||||
<link href="TaxBaik.Web.Client.styles.css" rel="stylesheet" />
|
||||
|
||||
@@ -195,6 +195,191 @@ html, body {
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.admin-row-clickable {
|
||||
cursor: pointer;
|
||||
transition: background-color var(--transition-fast), color var(--transition-fast);
|
||||
}
|
||||
|
||||
.admin-row-clickable:hover {
|
||||
background-color: rgba(31, 78, 121, 0.05);
|
||||
}
|
||||
|
||||
.admin-native-select {
|
||||
width: 100%;
|
||||
min-height: 56px;
|
||||
padding: 16px 14px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: var(--radius-md);
|
||||
background: var(--bg-primary);
|
||||
color: var(--text-primary);
|
||||
font: inherit;
|
||||
}
|
||||
|
||||
.admin-native-select:focus {
|
||||
outline: 2px solid var(--primary-color);
|
||||
outline-offset: 2px;
|
||||
}
|
||||
|
||||
.faq-col-order { width: 110px; }
|
||||
.faq-col-category { width: 130px; }
|
||||
.faq-col-status { width: 90px; }
|
||||
.faq-col-actions { width: 160px; }
|
||||
|
||||
.admin-season-panel {
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.admin-season-table {
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
.admin-season-date-picker {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.admin-season-jump-button {
|
||||
justify-content: flex-start;
|
||||
}
|
||||
|
||||
.admin-season-hero {
|
||||
background: linear-gradient(135deg, #1a365d 0%, #2a4365 100%);
|
||||
border-radius: 12px;
|
||||
padding: 2rem;
|
||||
color: #fff;
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.admin-season-hero--inactive {
|
||||
margin-top: 1.5rem;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.admin-season-badge {
|
||||
background: #f59e0b;
|
||||
color: #1a202c;
|
||||
display: inline-block;
|
||||
padding: 4px 12px;
|
||||
border-radius: 20px;
|
||||
font-size: 0.8rem;
|
||||
font-weight: 700;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.admin-season-hero-title {
|
||||
font-size: 1.8rem;
|
||||
font-weight: 800;
|
||||
white-space: pre-line;
|
||||
margin-bottom: 0.5rem;
|
||||
line-height: 1.3;
|
||||
}
|
||||
|
||||
.admin-season-hero-subtext {
|
||||
font-size: 0.95rem;
|
||||
color: rgba(255,255,255,0.8);
|
||||
margin-bottom: 1.5rem;
|
||||
}
|
||||
|
||||
.admin-season-hero-actions {
|
||||
display: flex;
|
||||
gap: 0.75rem;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
.admin-season-cta {
|
||||
background: #e53e3e;
|
||||
color: #fff;
|
||||
display: inline-block;
|
||||
padding: 10px 20px;
|
||||
border-radius: 8px;
|
||||
font-weight: 700;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.admin-season-secondary-cta {
|
||||
background: transparent;
|
||||
border: 2px solid rgba(255,255,255,0.5);
|
||||
color: #fff;
|
||||
padding: 10px 20px;
|
||||
border-radius: 8px;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.admin-season-row.is-active {
|
||||
background: rgba(66, 153, 225, 0.1);
|
||||
}
|
||||
|
||||
.admin-nowrap {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.admin-code-sm {
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.admin-muted-label {
|
||||
color: #a0aec0;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.admin-faq-empty-icon {
|
||||
font-size: 3rem;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.admin-faq-sort-button {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
.admin-faq-question {
|
||||
max-width: 480px;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
}
|
||||
|
||||
.admin-pre-wrap {
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
.admin-login-page-shell {
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.admin-faq-edit-panel {
|
||||
max-width: 720px;
|
||||
}
|
||||
|
||||
.admin-empty-state-icon {
|
||||
font-size: 3rem;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.admin-consultation-item {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.admin-dashboard-tile {
|
||||
border: 1px solid var(--border-color);
|
||||
min-height: 200px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.admin-dashboard-summary {
|
||||
border: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.admin-table-id-column {
|
||||
width: 80px;
|
||||
}
|
||||
|
||||
.admin-table-message-column {
|
||||
max-width: 200px;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.font-weight-bold {
|
||||
font-weight: var(--font-weight-bold) !important;
|
||||
}
|
||||
@@ -343,6 +528,80 @@ textarea:focus-visible {
|
||||
border-left-color: var(--info-color);
|
||||
}
|
||||
|
||||
.admin-login-shell {
|
||||
min-height: calc(100vh - 72px);
|
||||
padding: 48px 20px;
|
||||
display: grid;
|
||||
place-items: center;
|
||||
gap: 20px;
|
||||
background:
|
||||
radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 30%),
|
||||
radial-gradient(circle at bottom right, rgba(15, 23, 42, 0.08), transparent 24%),
|
||||
linear-gradient(180deg, #F8FAFC 0%, #EEF4FF 100%);
|
||||
}
|
||||
|
||||
.admin-login-hero {
|
||||
width: min(640px, 100%);
|
||||
text-align: left;
|
||||
padding: 8px 4px 0;
|
||||
}
|
||||
|
||||
.admin-login-kicker {
|
||||
margin: 0 0 8px;
|
||||
color: var(--primary-color);
|
||||
font-size: 0.78rem;
|
||||
font-weight: var(--font-weight-semibold);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.08em;
|
||||
}
|
||||
|
||||
.admin-login-hero h1 {
|
||||
margin: 0 0 10px;
|
||||
color: var(--text-primary);
|
||||
font-size: clamp(1.8rem, 3vw, 2.4rem);
|
||||
line-height: 1.1;
|
||||
font-weight: var(--font-weight-bold);
|
||||
}
|
||||
|
||||
.admin-login-hero p {
|
||||
margin: 0;
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.98rem;
|
||||
}
|
||||
|
||||
.admin-login-card {
|
||||
width: min(640px, 100%);
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.admin-login-summary {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
gap: 12px;
|
||||
}
|
||||
|
||||
.admin-login-summary > div {
|
||||
padding: 12px 14px;
|
||||
border-radius: var(--radius-md);
|
||||
border: 1px solid rgba(148, 163, 184, 0.22);
|
||||
background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
|
||||
}
|
||||
|
||||
.admin-login-summary strong {
|
||||
color: var(--text-primary);
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.admin-login-form {
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.admin-login-footnote {
|
||||
margin: 16px 0 0;
|
||||
color: var(--text-tertiary);
|
||||
font-size: 0.82rem;
|
||||
}
|
||||
|
||||
/* Reconnect Modal */
|
||||
.admin-reconnect-modal {
|
||||
display: none;
|
||||
@@ -510,6 +769,29 @@ textarea:focus-visible {
|
||||
border-bottom: 1px solid var(--border-color-light);
|
||||
}
|
||||
|
||||
.admin-drawer-context {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
padding: 10px 12px 8px;
|
||||
border-bottom: 1px solid var(--border-color-light);
|
||||
background: linear-gradient(180deg, rgba(37, 99, 235, 0.04), rgba(255, 255, 255, 0));
|
||||
}
|
||||
|
||||
.admin-drawer-context-label {
|
||||
color: var(--text-tertiary);
|
||||
font-size: 0.68rem;
|
||||
font-weight: var(--font-weight-semibold);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
|
||||
.admin-drawer-context-value {
|
||||
color: var(--text-primary);
|
||||
font-size: 0.9rem;
|
||||
font-weight: var(--font-weight-semibold);
|
||||
}
|
||||
|
||||
.admin-brand-mark {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
@@ -762,6 +1044,38 @@ textarea:focus-visible {
|
||||
background: var(--primary-color);
|
||||
}
|
||||
|
||||
.admin-dashboard-status {
|
||||
display: flex;
|
||||
align-items: stretch;
|
||||
justify-content: space-between;
|
||||
gap: 12px;
|
||||
padding: 12px 16px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: var(--radius-lg);
|
||||
background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
|
||||
}
|
||||
|
||||
.admin-status-chip {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
min-width: 0;
|
||||
padding: 10px 12px;
|
||||
border-radius: var(--radius-md);
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
border: 1px solid rgba(148, 163, 184, 0.18);
|
||||
}
|
||||
|
||||
.admin-status-chip .mud-typography--overline {
|
||||
color: var(--text-tertiary);
|
||||
line-height: 1.1;
|
||||
}
|
||||
|
||||
.admin-status-chip .mud-typography--body2 {
|
||||
color: var(--text-primary);
|
||||
font-weight: var(--font-weight-medium);
|
||||
}
|
||||
|
||||
/* ============================================================================
|
||||
Dashboard Page Styles
|
||||
============================================================================ */
|
||||
@@ -772,8 +1086,11 @@ textarea:focus-visible {
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
margin-bottom: 16px;
|
||||
padding-bottom: 10px;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
padding: 14px 16px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: var(--radius-lg);
|
||||
background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
|
||||
box-shadow: var(--shadow-sm);
|
||||
}
|
||||
|
||||
.admin-page-hero > div:first-child {
|
||||
@@ -855,15 +1172,17 @@ textarea:focus-visible {
|
||||
}
|
||||
|
||||
.admin-metric-card-value {
|
||||
font-size: 1.45rem;
|
||||
font-weight: var(--font-weight-bold);
|
||||
line-height: 1;
|
||||
font-size: 1.45rem;
|
||||
font-weight: var(--font-weight-bold);
|
||||
line-height: 1;
|
||||
color: var(--admin-metric-value-color, var(--primary-color));
|
||||
}
|
||||
|
||||
.admin-metric-card-icon {
|
||||
font-size: 1.9rem;
|
||||
opacity: 0.14;
|
||||
line-height: 1;
|
||||
font-size: 1.9rem;
|
||||
opacity: 0.14;
|
||||
line-height: 1;
|
||||
color: var(--admin-metric-icon-color, var(--secondary-color));
|
||||
}
|
||||
|
||||
.admin-metric-card-caption {
|
||||
@@ -1500,13 +1819,18 @@ textarea:focus-visible {
|
||||
}
|
||||
|
||||
.admin-drawer {
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
inset: 56px 12px auto 12px;
|
||||
width: auto;
|
||||
max-height: calc(100vh - 72px);
|
||||
height: auto;
|
||||
max-height: 60px;
|
||||
flex-direction: row;
|
||||
border-right: none;
|
||||
border-bottom: 1px solid var(--border-color);
|
||||
overflow-x: auto;
|
||||
flex-direction: column;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: var(--radius-xl);
|
||||
box-shadow: var(--shadow-2xl);
|
||||
overflow-y: auto;
|
||||
z-index: 20;
|
||||
background: var(--bg-primary);
|
||||
}
|
||||
|
||||
.admin-drawer-brand {
|
||||
@@ -1525,10 +1849,10 @@ textarea:focus-visible {
|
||||
|
||||
.admin-nav {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
flex-direction: column;
|
||||
padding: var(--space-2);
|
||||
gap: var(--space-1);
|
||||
overflow-x: auto;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.admin-nav .mud-nav-link {
|
||||
@@ -1542,6 +1866,7 @@ textarea:focus-visible {
|
||||
|
||||
.admin-main {
|
||||
flex: 1;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.admin-content {
|
||||
@@ -1554,7 +1879,11 @@ textarea:focus-visible {
|
||||
flex-direction: column;
|
||||
gap: var(--space-3);
|
||||
margin-bottom: var(--space-4);
|
||||
padding-bottom: var(--space-3);
|
||||
padding: var(--space-3) var(--space-4);
|
||||
}
|
||||
|
||||
.admin-dashboard-status {
|
||||
flex-direction: column;
|
||||
}
|
||||
|
||||
.admin-page-title {
|
||||
@@ -1809,11 +2138,81 @@ textarea:focus-visible {
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.admin-topbar-status {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
min-height: 28px;
|
||||
padding: 0 10px;
|
||||
border-radius: var(--radius-full);
|
||||
border: 1px solid rgba(37, 99, 235, 0.18);
|
||||
background: linear-gradient(180deg, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0.96) 100%);
|
||||
color: var(--primary-dark);
|
||||
font-size: 0.75rem;
|
||||
font-weight: var(--font-weight-semibold);
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.admin-topbar-action {
|
||||
white-space: nowrap;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.admin-nav-group {
|
||||
padding: 10px 12px 4px;
|
||||
color: var(--text-tertiary);
|
||||
font-size: 0.68rem;
|
||||
font-weight: var(--font-weight-semibold);
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 0.06em;
|
||||
}
|
||||
|
||||
.admin-nav-link {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
margin: 2px 8px;
|
||||
padding: 10px 12px;
|
||||
border-radius: var(--radius-md);
|
||||
color: var(--text-primary);
|
||||
text-decoration: none;
|
||||
transition: background-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
|
||||
}
|
||||
|
||||
.admin-nav-link:hover {
|
||||
background: var(--primary-light);
|
||||
color: var(--primary-dark);
|
||||
}
|
||||
|
||||
.admin-nav-link.active {
|
||||
background: linear-gradient(90deg, rgba(37, 99, 235, 0.14) 0%, rgba(37, 99, 235, 0.08) 100%);
|
||||
color: var(--primary-dark);
|
||||
font-weight: var(--font-weight-semibold);
|
||||
box-shadow: inset 3px 0 0 var(--primary-color), 0 1px 2px rgba(15, 23, 42, 0.05);
|
||||
transform: translateX(1px);
|
||||
}
|
||||
|
||||
.admin-nav-link-icon {
|
||||
display: inline-flex;
|
||||
width: 18px;
|
||||
justify-content: center;
|
||||
opacity: 0.9;
|
||||
}
|
||||
|
||||
.admin-nav-link-label {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.admin-nav-badge {
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
min-height: 18px;
|
||||
padding: 0 6px;
|
||||
border-radius: var(--radius-full);
|
||||
background: var(--secondary-light);
|
||||
color: var(--secondary-dark);
|
||||
font-size: 0.65rem;
|
||||
}
|
||||
|
||||
/* Enhanced Drawer Footer */
|
||||
.admin-drawer-footer {
|
||||
border-top: 1px solid var(--divider-color);
|
||||
@@ -1833,10 +2232,10 @@ textarea:focus-visible {
|
||||
|
||||
/* Responsive Topbar */
|
||||
@media (max-width: 600px) {
|
||||
.admin-topbar-action {
|
||||
padding: 4px 8px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
.admin-topbar-action {
|
||||
padding: 4px 8px;
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
.admin-topbar-title {
|
||||
min-width: 120px;
|
||||
@@ -1882,12 +2281,19 @@ html, body {
|
||||
|
||||
/* 페이지 헤더 영역 */
|
||||
.admin-page-hero {
|
||||
padding: 12px 16px !important;
|
||||
background-color: #F8FAFC !important;
|
||||
border-bottom: 1px solid #E2E8F0 !important;
|
||||
padding: 14px 16px !important;
|
||||
background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%) !important;
|
||||
border: 1px solid #E2E8F0 !important;
|
||||
border-radius: 12px !important;
|
||||
box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06) !important;
|
||||
margin-bottom: 12px !important;
|
||||
}
|
||||
|
||||
.admin-header-actions {
|
||||
flex-wrap: wrap;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
|
||||
.admin-page-title {
|
||||
font-size: 16px !important;
|
||||
font-weight: bold !important;
|
||||
|
||||
@@ -28,12 +28,12 @@ window.taxbaikAdminSession = {
|
||||
const body = JSON.stringify(payload);
|
||||
if (navigator.sendBeacon) {
|
||||
const blob = new Blob([body], { type: 'application/json' });
|
||||
if (navigator.sendBeacon('/taxbaik/api/client-logs', blob)) {
|
||||
if (navigator.sendBeacon(window.taxbaikAdminSession.getApiUrl('/client-logs'), blob)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
fetch('/taxbaik/api/client-logs', {
|
||||
fetch(window.taxbaikAdminSession.getApiUrl('/client-logs'), {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
body,
|
||||
@@ -248,6 +248,39 @@ window.taxbaikAdminSession = {
|
||||
return window.innerWidth || document.documentElement.clientWidth || 0;
|
||||
},
|
||||
|
||||
getAppRootPath: function () {
|
||||
try {
|
||||
const base = new URL(document.baseURI);
|
||||
let pathname = base.pathname || '/';
|
||||
|
||||
if (pathname.endsWith('/admin/')) {
|
||||
pathname = pathname.slice(0, -'/admin/'.length) || '/';
|
||||
} else if (pathname.endsWith('/portal/')) {
|
||||
pathname = pathname.slice(0, -'/portal/'.length) || '/';
|
||||
} else if (pathname.endsWith('/admin')) {
|
||||
pathname = pathname.slice(0, -'/admin'.length) || '/';
|
||||
} else if (pathname.endsWith('/portal')) {
|
||||
pathname = pathname.slice(0, -'/portal'.length) || '/';
|
||||
}
|
||||
|
||||
return pathname.endsWith('/') ? pathname.slice(0, -1) : pathname;
|
||||
} catch {
|
||||
return '';
|
||||
}
|
||||
},
|
||||
|
||||
getAdminUrl: function (path) {
|
||||
const rootPath = window.taxbaikAdminSession.getAppRootPath();
|
||||
const normalizedPath = String(path || '').startsWith('/') ? String(path || '') : `/${String(path || '')}`;
|
||||
return `${window.location.origin}${rootPath}/admin${normalizedPath}`;
|
||||
},
|
||||
|
||||
getApiUrl: function (path) {
|
||||
const rootPath = window.taxbaikAdminSession.getAppRootPath();
|
||||
const normalizedPath = String(path || '').startsWith('/') ? String(path || '') : `/${String(path || '')}`;
|
||||
return `${window.location.origin}${rootPath}/api${normalizedPath}`;
|
||||
},
|
||||
|
||||
clearAuthToken: function () {
|
||||
try {
|
||||
localStorage.removeItem('accessToken');
|
||||
@@ -410,7 +443,7 @@ window.taxbaikAdminSession = {
|
||||
}
|
||||
|
||||
window.taxbaikAdminSession.traceUiState('admin-login', 'submit started');
|
||||
const loginUrl = new URL('/taxbaik/api/auth/login', window.location.origin).toString();
|
||||
const loginUrl = window.taxbaikAdminSession.getApiUrl('/auth/login');
|
||||
const response = await fetch(loginUrl, {
|
||||
method: 'POST',
|
||||
headers: { 'Content-Type': 'application/json' },
|
||||
@@ -455,7 +488,7 @@ window.taxbaikAdminSession = {
|
||||
// Blazor가 대시보드 페이지를 로드할 때 CustomAuthenticationStateProvider가
|
||||
// 자동으로 localStorage에서 토큰을 복원합니다
|
||||
setTimeout(() => {
|
||||
window.location.href = '/taxbaik/admin/dashboard';
|
||||
window.location.href = window.taxbaikAdminSession.getAdminUrl('/dashboard');
|
||||
}, 200);
|
||||
} catch (error) {
|
||||
window.taxbaikAdminSession.traceUiState('admin-login', `submit failed: ${error?.message || 'login failed'}`);
|
||||
|
||||
@@ -28,9 +28,9 @@ User-agent: Kakaobot
|
||||
Allow: /
|
||||
|
||||
# Sitemap 위치
|
||||
Sitemap: https://www.taxbaik.com/taxbaik/sitemap.xml
|
||||
Sitemap: https://www.taxbaik.com/taxbaik/sitemap.xml
|
||||
Sitemap: https://www.taxbaik.com/sitemap.xml
|
||||
Sitemap: https://www.taxbaik.com/sitemap.xml
|
||||
|
||||
# RSS 피드
|
||||
Sitemap: https://www.taxbaik.com/taxbaik/rss.xml
|
||||
Sitemap: https://www.taxbaik.com/taxbaik/feed.xml
|
||||
Sitemap: https://www.taxbaik.com/rss.xml
|
||||
Sitemap: https://www.taxbaik.com/feed.xml
|
||||
|
||||
Reference in New Issue
Block a user