20 lines
524 B
Plaintext
20 lines
524 B
Plaintext
<!-- prompt_add_another_system.ejs -->
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Add Another System?</title>
|
|
</head>
|
|
<body>
|
|
<h1>Add Another System?</h1>
|
|
<form action="/setup/add-system" method="get">
|
|
<button type="submit">Add Another System</button>
|
|
</form>
|
|
<form action="/setup/finish-setup" method="post">
|
|
<button type="submit">Finish Setup</button>
|
|
</form>
|
|
</body>
|
|
</html>
|