修改完成

This commit is contained in:
2026-07-21 07:53:03 +08:00
parent 01d246c47b
commit ff60119277
172 changed files with 7982 additions and 2999 deletions
+8
View File
@@ -0,0 +1,8 @@
$ErrorActionPreference = 'Stop'
$root = Split-Path -Parent $PSScriptRoot
$page = Get-Content -LiteralPath (Join-Path $root 'pages/auth/a05-reset-password.vue') -Raw -Encoding UTF8
if ($page.Contains('<text class="success-mark">')) { throw 'A05 must not use a text symbol as its success asset' }
foreach ($token in @('<image', 'class="success-mark"', 'brand-seal.png')) {
if (-not $page.Contains($token)) { throw "A05 success asset missing: $token" }
}
Write-Output 'A05-SUCCESS-ASSET-CONTRACT PASS'