working companion prototype
This commit is contained in:
68
resources/mock-fixtures/step-09-set-cars.html
Normal file
68
resources/mock-fixtures/step-09-set-cars.html
Normal file
@@ -0,0 +1,68 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>iRacing - Set Car Classes</title>
|
||||
<link rel="stylesheet" href="common.css">
|
||||
</head>
|
||||
<body data-step="10">
|
||||
|
||||
<header class="header">
|
||||
<div class="step-indicator" data-indicator="car-classes">
|
||||
<span>Step</span>
|
||||
<span class="current">10</span>
|
||||
<span>of 18</span>
|
||||
<span>—</span>
|
||||
<span>Set Car Classes</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<h1 class="page-title">Set Car Classes</h1>
|
||||
|
||||
<p style="color: #888; margin-bottom: 16px;">Configure multi-class race settings.</p>
|
||||
|
||||
<form id="car-classes-form">
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="carClass">Car Class</label>
|
||||
<select
|
||||
id="carClass"
|
||||
class="form-select"
|
||||
data-dropdown="carClass"
|
||||
>
|
||||
<option value="gt3">GT3</option>
|
||||
<option value="gt4">GT4</option>
|
||||
<option value="lmp2">LMP2</option>
|
||||
<option value="lmp3">LMP3</option>
|
||||
<option value="prototype">Prototype</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="list-container" data-list="classAssignments">
|
||||
<div class="list-empty">No class assignments yet</div>
|
||||
</div>
|
||||
</form>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-secondary"
|
||||
data-action="back"
|
||||
onclick="window.location.href='step-08-time-limits.html'"
|
||||
>
|
||||
Back
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-primary"
|
||||
data-action="next"
|
||||
onclick="window.location.href='step-11-set-car-classes.html'"
|
||||
>
|
||||
Next
|
||||
</button>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user