Wires the live-ISO wizard from "shows three screens" to "actually invokes archinstall on the chosen disk", plus first-pass styling so it stops looking like raw <h1>/<form>. Webinstaller flow: - S1 form gains username/password/password2/language with server-side validation (hostname/username regex, ≥8 char password, match check). - /install/run writes user_configuration.json + user_credentials.json (creds 0600) to FURTKA_STATE_DIR (default /tmp/furtka), then execs `archinstall --config … --creds … --silent` as a backgrounded subprocess. - /install/log renders the subprocess output via meta-refresh polling. - FURTKA_DRY_RUN=1 short-circuits the exec for testing. - archinstall flag names verified against `archinstall --help` in an archlinux container before committing. Drive list: - drives.py now filters via `lsblk … -o NAME,SIZE,TYPE` keeping TYPE=disk, so the live ISO's own squashfs (loop) and CD-ROM (rom) stop appearing as install targets. Boot menu: - iso/build.sh sed-rebrands "Arch Linux install medium" → "Furtka Live Installer" across grub/, syslinux/, and efiboot/loader/ entries. Verified zero leftovers against the current releng profile. Styling: - static/style.css adopts the website's design tokens (palette, typography, gate-mark accent), with light + dark via prefers-color-scheme. - New base.html with header (gate SVG + FURTKA·INSTALLER wordmark + step indicator) and footer; all install templates extend it. - Drive picker uses radio cards with score chip; overview uses a summary table and a destructive "wipe drive" button. Tests: 17 pass (4 new in test_app.py covering validation + config builders, 2 new in test_drives.py covering the lsblk filter). Ruff clean. README roadmap updated to mark these done and explicitly defer the 26.0-alpha release until archinstall actually completes end-to-end on a VM. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
52 lines
2 KiB
HTML
52 lines
2 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}Step 1 — Account · Furtka Installer{% endblock %}
|
|
{% block step_indicator %}<span class="step-indicator">Step 1 of 3</span>{% endblock %}
|
|
|
|
{% block content %}
|
|
<h1>Account & hostname</h1>
|
|
<p class="lede">Set the server name and your administrator account.</p>
|
|
|
|
{% if errors %}
|
|
<div class="alert alert-error">
|
|
<strong>Please fix the following:</strong>
|
|
<ul>
|
|
{% for e in errors %}<li>{{ e }}</li>{% endfor %}
|
|
</ul>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<form method="post" action="{{ url_for('install_step_1') }}">
|
|
<div class="field">
|
|
<label for="hostname">Hostname</label>
|
|
<input type="text" id="hostname" name="hostname" required value="{{ values.hostname }}" autocomplete="off" />
|
|
<span class="hint">Lowercase letters, digits, hyphens. Used on the local network.</span>
|
|
</div>
|
|
<div class="field">
|
|
<label for="username">Admin username</label>
|
|
<input type="text" id="username" name="username" required value="{{ values.username }}" autocomplete="username" />
|
|
<span class="hint">Linux user account with sudo + docker access.</span>
|
|
</div>
|
|
<div class="field">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" name="password" required autocomplete="new-password" />
|
|
<span class="hint">At least 8 characters.</span>
|
|
</div>
|
|
<div class="field">
|
|
<label for="password2">Confirm password</label>
|
|
<input type="password" id="password2" name="password2" required autocomplete="new-password" />
|
|
</div>
|
|
<div class="field">
|
|
<label for="language">Language</label>
|
|
<select id="language" name="language">
|
|
{% for code, lang in languages.items() %}
|
|
<option value="{{ code }}" {% if code == values.language %}selected{% endif %}>{{ lang.label }}</option>
|
|
{% endfor %}
|
|
</select>
|
|
</div>
|
|
|
|
<div class="actions">
|
|
<button type="submit" class="btn btn-primary">Next — pick boot drive</button>
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|