28 lines
644 B
Plaintext
28 lines
644 B
Plaintext
---
|
|
title: "********"
|
|
---
|
|
|
|
import { Picture } from "astro:assets";
|
|
import ChoiceList from "@/components/ChoiceList.astro";
|
|
import image from "@/assets/imgs/Fedora/AfterInstall/PasswordCropped.png";
|
|
|
|
<div class="flex justify-center">
|
|
<Picture
|
|
src={image}
|
|
formats={["avif"]}
|
|
alt="Setting account password page"
|
|
class="max-h-[60vh] w-auto"
|
|
priority
|
|
/>
|
|
</div>
|
|
|
|
Set a new password for your new user account. Just use whatever but most
|
|
importantly, **Don't forget them.** (Write it down in a note somewhere if you
|
|
must)
|
|
|
|
<ChoiceList>
|
|
<a href="/en/distro/fedora/workstation/afterinstall/7/" class="button">
|
|
Continue
|
|
</a>
|
|
</ChoiceList>
|