Phase 1-3 of the builder subsystem on the Mac mini: - Express + SQLite + sessions scaffolding, LAN-only service on port 3090 - App Store Connect JWT client (ES256 signing, devices/profiles/bundleIds) - Device management UI with Apple-side registration - Fastlane sigh wrapper with profile cache + auto-install to ~/Library/ - launchd plist + deploy script for Mac mini supervision
30 lines
936 B
HTML
30 lines
936 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>App Store Builder - Login</title>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body class="login-page">
|
|
<div class="login-card">
|
|
<div class="login-icon">🔨</div>
|
|
<h1>App Store Builder</h1>
|
|
<p class="subtitle">Mac mini build console</p>
|
|
<form method="POST" action="/login">
|
|
<input type="password" name="password" placeholder="Password" autofocus required>
|
|
<button type="submit">Sign In</button>
|
|
</form>
|
|
<script>
|
|
if (location.search.includes('error=1')) {
|
|
const form = document.querySelector('form');
|
|
const err = document.createElement('p');
|
|
err.className = 'error';
|
|
err.textContent = 'Invalid password';
|
|
form.insertBefore(err, form.firstChild);
|
|
}
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|