Files
gridpilot.gg/resources/mock-fixtures/step-03-create-race.html

80 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 - Race Information</title>
<link rel="stylesheet" href="common.css">
</head>
<body data-step="3">
<header class="header">
<div class="step-indicator" data-indicator="race-information">
<span>Step</span>
<span class="current">3</span>
<span>of 18</span>
<span></span>
<span>Race Information</span>
</div>
</header>
<main class="main">
<h1 class="page-title">Race Information</h1>
<form id="race-info-form">
<div class="form-group">
<label class="form-label required" for="sessionName">Session Name</label>
<input
type="text"
id="sessionName"
class="form-input"
data-field="sessionName"
placeholder="Enter session name"
required
/>
</div>
<div class="form-group">
<label class="form-label" for="password">Password</label>
<input
type="password"
id="password"
class="form-input"
data-field="password"
placeholder="Optional password"
/>
</div>
<div class="form-group">
<label class="form-label" for="description">Description</label>
<textarea
id="description"
class="form-input"
data-field="description"
placeholder="Optional session description"
></textarea>
</div>
</form>
</main>
<footer class="footer">
<button
type="button"
class="btn btn-secondary"
data-action="back"
onclick="window.location.href='step-02-hosted-racing.html'"
>
Back
</button>
<button
type="button"
class="btn btn-primary"
data-action="next"
onclick="window.location.href='step-04-race-information.html'"
>
Next
</button>
</footer>
</body>
</html>