26 lines
811 B
Plaintext
26 lines
811 B
Plaintext
<!-- setup.ejs -->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Setup</title>
|
|
</head>
|
|
<body>
|
|
<h1>Setup</h1>
|
|
<form action="/setup" method="post">
|
|
<label for="clientName">Client Name:</label>
|
|
<input type="text" id="clientName" name="clientName" required>
|
|
<br>
|
|
<label for="clientLocation">Client Location:</label>
|
|
<input type="text" id="clientLocation" name="clientLocation" required>
|
|
<br>
|
|
<label for="clientCapabilities">Client Capabilities (comma-separated):</label>
|
|
<input type="text" id="clientCapabilities" name="clientCapabilities" required>
|
|
<br>
|
|
<button type="submit">Next</button>
|
|
</form>
|
|
</body>
|
|
</html>
|