working companion prototype

This commit is contained in:
2025-11-24 23:32:36 +01:00
parent e7978024d7
commit e2bea9a126
175 changed files with 23227 additions and 3519 deletions

View File

@@ -0,0 +1,69 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>iRacing - Add Car</title>
<link rel="stylesheet" href="common.css">
</head>
<body data-step="9" data-modal="true">
<div class="modal-overlay">
<div class="modal-content">
<header class="modal-header">
<h2 class="modal-title" data-indicator="add-car">Add a Car</h2>
</header>
<div class="modal-body">
<div class="search-group">
<input
type="text"
class="search-input"
data-field="carSearch"
placeholder="Search for cars..."
/>
</div>
<div class="grid-list" data-list="carResults">
<div class="grid-item" data-item="car-001">
<strong>Porsche 911 GT3 R</strong>
<span style="color: #888; font-size: 12px;">GT3</span>
</div>
<div class="grid-item" data-item="car-002">
<strong>Ferrari 488 GT3</strong>
<span style="color: #888; font-size: 12px;">GT3</span>
</div>
<div class="grid-item" data-item="car-003">
<strong>BMW M4 GT3</strong>
<span style="color: #888; font-size: 12px;">GT3</span>
</div>
<div class="grid-item" data-item="car-004">
<strong>Mercedes AMG GT3</strong>
<span style="color: #888; font-size: 12px;">GT3</span>
</div>
</div>
</div>
<footer class="modal-footer">
<button
type="button"
class="btn btn-secondary"
data-action="cancel"
onclick="window.location.href='step-08-time-limits.html'"
>
Cancel
</button>
<button
type="button"
class="btn btn-primary"
data-action="confirm"
onclick="window.location.href='step-08-time-limits.html'"
>
Add Selected
</button>
</footer>
</div>
</div>
</body>
</html>