> For the complete documentation index, see [llms.txt](https://plutolabs.gitbook.io/plutoframework/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://plutolabs.gitbook.io/plutoframework/make-your-application/wallet-creation.md).

# Wallet creation

PlutoFramework allows you to:

* Generate new seed-phrase (new seed-phrase based Account)
* Export the account to JSON file (which can be used in [Polkadot js extension](https://polkadot.js.org/extension/))
* Import existing seed-phrase
* Import existing JSON file account

By default, the first page of the application is set to `SetupPasswordPage.xaml`. This page creates a new seed-phrase based account and setups the password used to secure this newly created account. If the device supports it (usually all modern ones do), it setups the biometric verification as well (Fingerprint recognition/face recognition).

<figure><img src="/files/2M8O55MxHgvFZMwqwb91" alt="" width="375"><figcaption><p>SetupPasswordPage.xaml</p></figcaption></figure>

Feel free to change the visuals of this landing page.

&#x20;If you want to see the seed-phrase of the account (usually for back up), you can view it on `MnemonicsPage.xaml` which can be accessed through `SettingsPage.xaml`. You can also export the account to JSON file. And it allows you to import existing account.

<figure><img src="/files/WYaVaiEgtnaAllx6h6ka" alt="" width="375"><figcaption><p>MnemonicsPage.xaml</p></figcaption></figure>

If you want a more low-level approach, definitelly look into the `PlutoFramework/Model/KeysModel.cs` file to access all account related methods. However, I recommend sticking to what already exists unless you really have to.
