16 lines
465 B
HTML
16 lines
465 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Furtka Install</title>
|
|
</head>
|
|
<body>
|
|
<h1>Step 2 - Choose Boot Drive</h1>
|
|
{% for h in storage %}
|
|
<p>{{ h }}</p>
|
|
{% endfor %}
|
|
<form method="post", action="{{ url_for('install_step_2') }}">
|
|
<p>Boot Drive: <input type="text" name="boot_drive_uuid" required /></p>
|
|
<input type="submit" value="Go to Overview" />
|
|
</form>
|
|
</body>
|
|
</html>
|