working companion prototype
This commit is contained in:
71
resources/mock-fixtures/step-12-set-track.html
Normal file
71
resources/mock-fixtures/step-12-set-track.html
Normal file
@@ -0,0 +1,71 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>iRacing - Track Options</title>
|
||||
<link rel="stylesheet" href="common.css">
|
||||
</head>
|
||||
<body data-step="13">
|
||||
|
||||
<header class="header">
|
||||
<div class="step-indicator" data-indicator="track-options">
|
||||
<span>Step</span>
|
||||
<span class="current">13</span>
|
||||
<span>of 18</span>
|
||||
<span>—</span>
|
||||
<span>Track Options</span>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main class="main">
|
||||
<h1 class="page-title">Track Options</h1>
|
||||
|
||||
<form id="track-options-form">
|
||||
<div class="form-group">
|
||||
<label class="form-label" for="trackConfig">Track Configuration</label>
|
||||
<select
|
||||
id="trackConfig"
|
||||
class="form-select"
|
||||
data-dropdown="trackConfig"
|
||||
>
|
||||
<option value="full">Full Course</option>
|
||||
<option value="short">Short Course</option>
|
||||
<option value="oval">Oval</option>
|
||||
<option value="rallycross">Rallycross</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="toggle-group">
|
||||
<input
|
||||
type="checkbox"
|
||||
id="dynamicTrack"
|
||||
class="toggle-input"
|
||||
data-toggle="dynamicTrack"
|
||||
/>
|
||||
<label class="toggle-label" for="dynamicTrack">Dynamic track</label>
|
||||
</div>
|
||||
</form>
|
||||
</main>
|
||||
|
||||
<footer class="footer">
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-secondary"
|
||||
data-action="back"
|
||||
onclick="window.location.href='step-11-set-car-classes.html'"
|
||||
>
|
||||
Back
|
||||
</button>
|
||||
<button
|
||||
type="button"
|
||||
class="btn btn-primary"
|
||||
data-action="next"
|
||||
onclick="window.location.href='step-14-track-options.html'"
|
||||
>
|
||||
Next
|
||||
</button>
|
||||
</footer>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user