mirror of
https://github.com/vicliu624/trail-mate.git
synced 2026-09-25 13:13:37 +00:00
12 lines
1.1 KiB
HTML
12 lines
1.1 KiB
HTML
<!doctype html><html lang="en"><head><meta charset="utf-8"><title>Team Pairing and Enrollment</title><style>:root{color-scheme:dark}body{background:#0b1219;color:#e8f2f8;font:15px/1.6 system-ui}main{max-width:900px;margin:auto;padding:28px}section{background:#111c26;border:1px solid #294052;border-radius:12px;padding:20px}a{color:#70d7ff}pre{white-space:pre-wrap;background:#081018;padding:18px;border-radius:8px}</style></head><body><main><h1>Team Pairing and Enrollment</h1><p><a href="model.html">Return to Team Collaboration and Pairing Model</a></p><section><pre class="mermaid">sequenceDiagram
|
|
actor Owner
|
|
participant Pair as TeamPairingCoordinator
|
|
participant Crypto as ITeamCrypto
|
|
participant Link as PairingTransport
|
|
participant Team as TeamService
|
|
Owner->>Pair: start pairing
|
|
Pair->>Crypto: verify material
|
|
Pair->>Link: exchange messages
|
|
Link-->>Pair: verified response
|
|
Pair->>Team: admit member</pre><p>response, cryptographic verification and member submission jointly form a successful pairing.</p></section></main></body></html>
|