Sign-up form
In this page, you can experience account creation through a form based sign-up
flow using a username and a password.
## How to use
Fill in the form and submit to sign up. You need to enter a username and two
identical passwords.
As this is a demo website, the password won't be stored to the server. This
means you don't need to create an account before signing in.
When you go to one of sign-in pages on this website, you can sign in to an
arbitrary account using a random password.
## How to develop
This demo uses web components, but you can use `input` tag to create a
`username` field and `password` fields.
Notable best practice you can follow is to append `autocomplete` attribute for
`username` field and `password` fields. For a `username` field, use
`autocomplete="username"`. For `password` fields, use
`autocomplete="new-password"`.
There are a lot of other small things you can do to improve a sign-up form.
Learn more:
* [Sign-up form best practices](https://web.dev/articles/sign-up-form-best-practices)
Create your account