69 lines
2.0 KiB
HTML
69 lines
2.0 KiB
HTML
<!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> |