diff --git a/README.md b/README.md
index 43ad1941..ab1caa07 100644
--- a/README.md
+++ b/README.md
@@ -150,6 +150,12 @@ Next we need to create a user who can login to the admin site. Run the following
python manage.py create_admin --noinput --username "admin" --email "admin@example.com" --password "password"
```
+Create the admin, annotator, and annotation approver roles to assign to users. Run the following command:
+
+```bash
+python manage.py create_roles
+```
+
Developers can also validate that the project works as expected by running the tests:
```bash
@@ -235,6 +241,12 @@ Click `Labels` button in left bar to define your own labels. You should see the
+### Assign Roles to Users
+
+Click `Users` button in left bar to assign project users to annotator, admin, or annotation approval roles.
+
+
+
### Annotation
Now, you are ready to annotate the texts. Just click the `Annotate Data` button in the navigation bar, you can start to annotate the documents you uploaded.
diff --git a/docs/user_page.png b/docs/user_page.png
new file mode 100644
index 00000000..886e9c0f
Binary files /dev/null and b/docs/user_page.png differ