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
57 lines
1.5 KiB
HTML
57 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Devices - Builder</title>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<div class="header-left"><h1>🔨 Builder</h1></div>
|
|
<nav>
|
|
<a href="/">Builds</a>
|
|
<a href="/devices" class="active">Devices</a>
|
|
<a href="/settings">Settings</a>
|
|
<a href="/logout" class="logout">Logout</a>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
<h1 class="page-title">Devices</h1>
|
|
|
|
<div class="section">
|
|
<h2>Register a device</h2>
|
|
<div class="card">
|
|
<form id="add-form">
|
|
<div class="field-group">
|
|
<div>
|
|
<label>UDID</label>
|
|
<input type="text" name="udid" placeholder="40-char hex or 25-char UUID format" required autocomplete="off">
|
|
</div>
|
|
<div>
|
|
<label>Name</label>
|
|
<input type="text" name="name" placeholder="Trey's iPhone" autocomplete="off">
|
|
</div>
|
|
</div>
|
|
<div class="btn-row">
|
|
<button type="submit">Add Device</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="section">
|
|
<h2>Registered devices</h2>
|
|
<div id="devices-container">
|
|
<div class="card"><p style="color:var(--text-muted)">Loading…</p></div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="toast" class="toast"></div>
|
|
</main>
|
|
|
|
<script src="/js/devices.js"></script>
|
|
</body>
|
|
</html>
|